mirror of
https://github.com/pezkuwichain/bizinikiwi-bn.git
synced 2026-06-20 22:11:05 +00:00
63f8c58735
* remove rustc-serialize * bump version to 0.6.0 * remove bincode
29 lines
827 B
TOML
29 lines
827 B
TOML
[package]
|
|
name = "substrate-bn"
|
|
version = "0.6.0"
|
|
authors = ["Sean Bowe <ewillbefull@gmail.com>", "Parity Technologies <admin@parity.io>"]
|
|
description = "Pairing cryptography with the Barreto-Naehrig curve"
|
|
keywords = ["pairing","crypto","cryptography"]
|
|
readme = "README.md"
|
|
homepage = "https://github.com/paritytech/bn"
|
|
repository = "https://github.com/paritytech/bn"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[[bench]]
|
|
name = "api"
|
|
|
|
[dependencies]
|
|
rand = { version = "0.8.3", default-features = false }
|
|
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.8.3", features = ["std_rng"] }
|
|
|