pairing/Cargo.toml

29 lines
687 B
TOML
Raw Permalink Normal View History

2017-07-08 09:55:43 -07:00
[package]
name = "pairing"
# Remember to change version string in README.md.
2020-09-08 14:45:17 -07:00
version = "0.18.0"
2018-07-02 07:51:32 -07:00
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",
]
readme = "README.md"
2017-07-08 09:55:43 -07:00
license = "MIT/Apache-2.0"
description = "Pairing-friendly elliptic curve library"
documentation = "https://docs.rs/pairing/"
2020-09-08 14:45:17 -07:00
homepage = "https://github.com/zkcrypto/pairing"
repository = "https://github.com/zkcrypto/pairing"
2019-08-20 17:31:20 -07:00
edition ="2018"
2017-07-08 09:55:43 -07:00
[dependencies]
ff = { version = "0.8", default-features = false }
group = { version = "0.8", default-features = false }
2019-07-10 15:36:40 -07:00
[dev-dependencies]
rand_core = "0.5"
2019-07-14 04:19:01 -07:00
rand_xorshift = "0.2"
2019-07-10 15:36:40 -07:00
2019-10-07 20:02:44 -07:00
[badges]
maintenance = { status = "actively-developed" }