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