[package] name = "pairing" # Remember to change version string in README.md. version = "0.16.0" authors = [ "Sean Bowe ", "Jack Grigg ", ] readme = "README.md" 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" edition ="2018" [dependencies] byteorder = "1" ff = { version = "0.7", path = "../ff", features = ["derive"] } group = { version = "0.6", path = "../group" } rand_core = "0.5" subtle = "2.2.1" [dev-dependencies] criterion = "0.3" rand_xorshift = "0.2" [features] unstable-features = ["expose-arith"] expose-arith = [] default = [] [badges] maintenance = { status = "actively-developed" }