phase2-bn254/Cargo.toml

32 lines
792 B
TOML
Raw Normal View History

2017-07-08 19:55:43 +03:00
[package]
name = "pairing"
# Remember to change version string in README.md.
2019-03-04 19:49:52 +03:00
version = "0.16.1"
2018-07-02 17:51:32 +03:00
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",
"Alex Vlasov <alex.m.vlasov@gmail.com>",
"Alex Gluchowski <alex@gluchowski.net>"
2018-07-02 17:51:32 +03:00
]
2017-07-08 19:55:43 +03:00
license = "MIT/Apache-2.0"
description = "Pairing-friendly elliptic curve library"
documentation = "https://docs.rs/pairing/"
homepage = "https://github.com/matter-labs/pairing"
repository = "https://github.com/matter-labs/pairing"
2017-07-08 19:55:43 +03:00
[dependencies]
2018-02-13 18:51:16 +03:00
rand = "0.4"
byteorder = "1"
ff = { git = 'https://github.com/matterinc/ff', features = ["derive"], tag = "0.5"}
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 = []