forked from zkcrypto/ff
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (40 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
47 lines (40 loc) · 1.29 KB
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
38
39
40
41
42
43
44
45
46
47
[package]
name = "rustcrypto-ff"
version = "0.14.0-rc.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",
]
edition = "2021"
rust-version = "1.85"
description = "Library for building and interfacing with finite fields"
readme = "README.md"
documentation = "https://docs.rs/rustcrypto-ff/"
homepage = "https://github.com/RustCrypto/ff"
license = "MIT/Apache-2.0"
repository = "https://github.com/RustCrypto/ff"
[dependencies]
bitvec = { version = "1", default-features = false, optional = true }
byteorder = { version = "1", default-features = false, optional = true }
ff_derive = { version = "0.14.0-rc.0", package = "rustcrypto-ff_derive", path = "ff_derive", optional = true }
rand_core = { version = "0.10", default-features = false }
subtle = { version = "2.2.1", default-features = false, features = ["i128"] }
[dev-dependencies]
blake2b_simd = "1"
rand = "0.10.0-rc.8"
[features]
default = ["bits", "std"]
alloc = []
bits = ["bitvec", "ff_derive?/bits"]
derive = ["byteorder", "ff_derive"]
std = ["alloc"]
[[test]]
name = "derive"
required-features = ["derive"]
[badges]
maintenance = { status = "actively-developed" }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[patch.crates-io.rand]
git = "https://github.com/rust-random/rand"