forked from RustCrypto/crypto-bigint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 1.2 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "crypto-bigint"
version = "0.2.9" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation of a big integer library which has been designed from
the ground-up for use in cryptographic applications. Provides constant-time,
no_std-friendly implementations of modern formulas using const generics.
"""
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
edition = "2018"
repository = "https://github.com/RustCrypto/crypto-bigint"
categories = ["algorithms", "cryptography", "data-structures", "mathematics", "no-std"]
keywords = ["arbitrary", "crypto", "bignum", "integer", "precision"]
readme = "README.md"
[dependencies]
generic-array = { version = "0.14", optional = true }
subtle = { version = "2.4", default-features = false }
# optional dependencies
rand_core = { version = "0.6", optional = true }
rlp = { version = "0.5", optional = true, default-features = false }
zeroize = { version = ">=1, <1.5", optional = true, default-features = false }
[dev-dependencies]
hex-literal = "0.3"
rand_chacha = "0.3"
[features]
default = ["rand"]
alloc = []
rand = ["rand_core"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]