phase2-bn254/Cargo.toml

26 lines
580 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.
2018-05-17 07:52:19 +03:00
version = "0.14.2"
2018-07-02 17:51:32 +03:00
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",
]
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/ebfull/pairing"
repository = "https://github.com/ebfull/pairing"
[dependencies]
2018-02-13 18:51:16 +03:00
rand = "0.4"
byteorder = "1"
2018-07-03 11:05:12 +03:00
ff = { version = "0.4", features = ["derive"] }
[features]
unstable-features = ["expose-arith"]
expose-arith = []
default = []