2018-08-28 15:03:42 -07:00
|
|
|
[package]
|
|
|
|
name = "pairing"
|
|
|
|
|
|
|
|
# Remember to change version string in README.md.
|
2020-03-12 14:59:19 -07:00
|
|
|
version = "0.16.0"
|
2019-01-06 01:01:44 -08:00
|
|
|
authors = [
|
|
|
|
"Sean Bowe <ewillbefull@gmail.com>",
|
|
|
|
"Jack Grigg <jack@z.cash>",
|
|
|
|
]
|
2019-08-02 06:57:34 -07:00
|
|
|
readme = "README.md"
|
2018-08-28 15:03:42 -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"
|
2019-08-20 17:31:20 -07:00
|
|
|
edition ="2018"
|
2018-08-28 15:03:42 -07:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
byteorder = "1"
|
2020-03-12 14:59:19 -07:00
|
|
|
ff = { version = "0.6", path = "../ff", features = ["derive"] }
|
|
|
|
group = { version = "0.6", path = "../group" }
|
2019-07-14 04:19:01 -07:00
|
|
|
rand_core = "0.5"
|
2019-12-12 15:15:48 -08:00
|
|
|
subtle = "2.2.1"
|
2018-08-28 15:03:42 -07:00
|
|
|
|
2019-07-10 15:36:40 -07:00
|
|
|
[dev-dependencies]
|
2019-12-19 14:46:16 -08:00
|
|
|
criterion = "0.3"
|
2019-07-14 04:19:01 -07:00
|
|
|
rand_xorshift = "0.2"
|
2019-07-10 15:36:40 -07:00
|
|
|
|
2018-08-28 15:03:42 -07:00
|
|
|
[features]
|
|
|
|
unstable-features = ["expose-arith"]
|
|
|
|
expose-arith = []
|
|
|
|
default = []
|
2019-10-07 20:02:44 -07:00
|
|
|
|
2019-12-19 14:46:16 -08:00
|
|
|
[[bench]]
|
|
|
|
name = "pairing_benches"
|
|
|
|
harness = false
|
|
|
|
|
2019-10-07 20:02:44 -07:00
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|