pairing/Cargo.toml

30 lines
656 B
TOML
Raw Normal View History

2017-07-08 09:55:43 -07:00
[package]
name = "pairing"
# Remember to change version string in README.md.
2018-05-16 21:52:19 -07:00
version = "0.14.2"
2018-07-02 07:51:32 -07:00
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",
]
2017-07-08 09:55:43 -07: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]
rand_core = "0.4"
byteorder = "1"
ff = { path = "../ff", features = ["derive"] }
group = { path = "../group" }
2019-07-10 15:36:40 -07:00
[dev-dependencies]
rand_xorshift = "0.1"
2019-07-10 15:36:40 -07:00
[features]
unstable-features = ["expose-arith"]
expose-arith = []
default = []