2017-07-08 10:55:43 -06:00
|
|
|
[package]
|
|
|
|
name = "pairing"
|
2017-09-28 13:32:34 -06:00
|
|
|
|
|
|
|
# Remember to change version string in README.md.
|
2018-05-17 16:52:19 +12:00
|
|
|
version = "0.14.2"
|
2018-07-02 15:51:32 +01:00
|
|
|
authors = [
|
|
|
|
"Sean Bowe <ewillbefull@gmail.com>",
|
|
|
|
"Jack Grigg <jack@z.cash>",
|
|
|
|
]
|
2017-07-08 10:55:43 -06: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 15:51:16 +00:00
|
|
|
rand = "0.4"
|
2017-10-12 11:20:57 -06:00
|
|
|
byteorder = "1"
|
2018-07-03 09:05:12 +01:00
|
|
|
ff = { version = "0.4", features = ["derive"] }
|
2018-07-02 12:50:47 +01:00
|
|
|
group = "0.1"
|
2017-07-14 11:56:55 -06:00
|
|
|
|
|
|
|
[features]
|
2017-12-04 21:47:45 -07:00
|
|
|
unstable-features = ["expose-arith"]
|
|
|
|
expose-arith = []
|
2017-09-28 12:52:14 -06:00
|
|
|
default = []
|