31 lines
860 B
TOML
31 lines
860 B
TOML
[package]
|
|
name = "pairing_ce"
|
|
|
|
# Remember to change version string in README.md.
|
|
version = "0.17.0"
|
|
authors = [
|
|
"Sean Bowe <ewillbefull@gmail.com>",
|
|
"Jack Grigg <jack@z.cash>",
|
|
"Alex Vlasov <alex.m.vlasov@gmail.com>",
|
|
"Alex Gluchowski <alex@gluchowski.net>"
|
|
]
|
|
license = "MIT/Apache-2.0"
|
|
|
|
description = "Pairing-friendly elliptic curve library"
|
|
documentation = "https://docs.rs/pairing/"
|
|
homepage = "https://github.com/matter-labs/pairing"
|
|
repository = "https://github.com/matter-labs/pairing"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
rand = "0.4"
|
|
byteorder = "1"
|
|
#ff_ce = {version = "0.6", features = ["derive"] }
|
|
#ff_ce = { git = 'https://github.com/matter-labs/ff', features = ["derive"], branch = "gpu"}
|
|
ff = { path = '../ff', package = "ff_ce", features = ["derive"]}
|
|
|
|
[features]
|
|
unstable-features = ["expose-arith"]
|
|
expose-arith = []
|
|
default = []
|