phase2-bn254/Cargo.toml

33 lines
824 B
TOML

[package]
name = "pairing"
# Remember to change version string in README.md.
version = "0.15.1"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",
"Alex Vlasov <alex.m.vlasov@gmail.com>",
"Alex Gluchowski <alex@gluchowski.net>"
]
license = "MIT/Apache-2.0"
description = "Pairing-friendly elliptic curve library"
documentation = "https://docs.rs/pairing/"
homepage = "https://github.com/matterinc/pairing"
repository = "https://github.com/matterinc/pairing"
[dependencies]
rand = "0.4"
byteorder = "1"
ff = { git = 'https://github.com/matterinc/ff', features = ["derive"] }
#ff = { path = "../ff", features = ["derive"] }
serde = "1.0.80"
serde_derive = "1.0.80"
serde_json = "1.0.33"
hex = "0.3.2"
[features]
unstable-features = ["expose-arith"]
expose-arith = []
default = []