mirror of
https://github.com/pezkuwichain/bizinikiwi-bn.git
synced 2026-06-13 02:21:09 +00:00
33 lines
950 B
TOML
33 lines
950 B
TOML
[package]
|
|
name = "bn"
|
|
version = "0.4.4"
|
|
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
|
|
description = "Pairing cryptography with the Barreto-Naehrig curve"
|
|
keywords = ["pairing","crypto","cryptography"]
|
|
readme = "README.md"
|
|
homepage = "https://github.com/zcash/bn"
|
|
repository = "https://github.com/zcash/bn"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = ["rustc-serialize"]
|
|
|
|
[[bench]]
|
|
name = "api"
|
|
|
|
[dependencies]
|
|
rand = { version = "0.5", features = ["i128_support"], default-features = false }
|
|
rustc-serialize = { version = "0.3", optional = true }
|
|
byteorder = { version = "1.0", features = ["i128"], default-features = false }
|
|
crunchy = "0.2.1"
|
|
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
|
|
rustc-hex = { version = "2", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
rand = { version = "0.5", features = ["i128_support"] }
|
|
|
|
[dev-dependencies.bincode]
|
|
version = "0.6"
|
|
default-features = false
|
|
features = ["rustc-serialize"]
|