2017-07-08 19:55:43 +03:00
|
|
|
[package]
|
|
|
|
name = "pairing"
|
2017-09-28 22:32:34 +03:00
|
|
|
|
|
|
|
# Remember to change version string in README.md.
|
2019-03-05 11:47:43 +03:00
|
|
|
version = "0.16.2"
|
2018-07-02 17:51:32 +03:00
|
|
|
authors = [
|
|
|
|
"Sean Bowe <ewillbefull@gmail.com>",
|
|
|
|
"Jack Grigg <jack@z.cash>",
|
2019-01-09 21:34:17 +03:00
|
|
|
"Alex Vlasov <alex.m.vlasov@gmail.com>",
|
|
|
|
"Alex Gluchowski <alex@gluchowski.net>"
|
2018-07-02 17:51:32 +03:00
|
|
|
]
|
2017-07-08 19:55:43 +03:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
|
|
|
|
description = "Pairing-friendly elliptic curve library"
|
|
|
|
documentation = "https://docs.rs/pairing/"
|
2019-03-04 19:35:10 +03:00
|
|
|
homepage = "https://github.com/matter-labs/pairing"
|
|
|
|
repository = "https://github.com/matter-labs/pairing"
|
2017-07-08 19:55:43 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2018-02-13 18:51:16 +03:00
|
|
|
rand = "0.4"
|
2017-10-12 20:20:57 +03:00
|
|
|
byteorder = "1"
|
2019-03-04 19:35:10 +03:00
|
|
|
ff = { git = 'https://github.com/matterinc/ff', features = ["derive"], tag = "0.5"}
|
2019-01-09 21:34:17 +03:00
|
|
|
serde = "1.0.80"
|
|
|
|
serde_derive = "1.0.80"
|
|
|
|
serde_json = "1.0.33"
|
|
|
|
hex = "0.3.2"
|
2017-07-14 20:56:55 +03:00
|
|
|
|
|
|
|
[features]
|
2017-12-05 07:47:45 +03:00
|
|
|
unstable-features = ["expose-arith"]
|
|
|
|
expose-arith = []
|
2017-09-28 21:52:14 +03:00
|
|
|
default = []
|