jubjub/Cargo.toml

24 lines
611 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"
version = "0.0.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]
2019-01-06 21:47:02 -08:00
version = "2"
2018-08-31 18:47:53 -07:00
default-features = false
2018-08-31 18:53:31 -07:00
[features]
default = ["std"]
nightly = ["subtle/nightly"]
std = ["byteorder/std", "subtle/std"]