jubjub/Cargo.toml

34 lines
742 B
TOML
Raw Permalink Normal View History

2018-08-29 11:00:11 -07:00
[package]
2019-05-04 09:03:50 -07:00
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Eirik Ogilvie-Wigley <eowigley@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",
]
2018-08-29 11:00:11 -07:00
description = "Implementation of the Jubjub elliptic curve group"
documentation = "https://docs.rs/jubjub/"
homepage = "https://github.com/zkcrypto/jubjub"
license = "MIT/Apache-2.0"
name = "jubjub"
repository = "https://github.com/zkcrypto/jubjub"
2019-12-03 17:32:47 -08:00
version = "0.3.0"
2019-01-05 20:44:41 -08:00
edition = "2018"
2018-08-29 11:00:11 -07:00
[dependencies.bls12_381]
version = "0.1"
2018-08-31 16:54:20 -07:00
default-features = false
2018-08-31 18:47:53 -07:00
[dependencies.subtle]
version = "^2.2.1"
2018-08-31 18:47:53 -07:00
default-features = false
2018-08-31 18:53:31 -07:00
2019-02-20 12:18:29 -08:00
[dev-dependencies.rand_core]
2019-11-26 11:44:03 -08:00
version = "0.5"
2019-02-20 12:18:29 -08:00
default-features = false
[dev-dependencies.rand_xorshift]
2019-11-26 11:44:03 -08:00
version = "0.2"
2019-02-20 12:18:29 -08:00
default-features = false
2018-08-31 18:53:31 -07:00
[features]
2019-12-03 17:31:04 -08:00
default = []