jubjub/Cargo.toml

32 lines
730 B
TOML
Raw Normal View History

2018-08-29 11:00:11 -07:00
[package]
2018-09-06 09:58:33 -07:00
authors = ["Sean Bowe <ewillbefull@gmail.com>", "Eirik Ogilvie-Wigley <eowigley@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-03-31 22:29:56 -07:00
version = "0.1.0"
2019-01-05 20:44:41 -08:00
edition = "2018"
2018-08-29 11:00:11 -07:00
2018-08-31 16:54:20 -07:00
[dependencies.byteorder]
version = "1"
default-features = false
2018-08-31 18:47:53 -07:00
[dependencies.subtle]
version = "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]
version = "0.4"
default-features = false
[dev-dependencies.rand_xorshift]
version = "0.1"
default-features = false
2018-08-31 18:53:31 -07:00
[features]
default = ["std"]
nightly = ["subtle/nightly"]
std = []