mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-02-21 05:35:47 +00:00
34 lines
742 B
TOML
34 lines
742 B
TOML
|
[package]
|
||
|
authors = [
|
||
|
"Sean Bowe <ewillbefull@gmail.com>",
|
||
|
"Eirik Ogilvie-Wigley <eowigley@gmail.com>",
|
||
|
"Jack Grigg <thestr4d@gmail.com>",
|
||
|
]
|
||
|
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.3.0"
|
||
|
edition = "2018"
|
||
|
|
||
|
[dependencies.bls12_381]
|
||
|
version = "0.1"
|
||
|
default-features = false
|
||
|
|
||
|
[dependencies.subtle]
|
||
|
version = "^2.2.1"
|
||
|
default-features = false
|
||
|
|
||
|
[dev-dependencies.rand_core]
|
||
|
version = "0.5"
|
||
|
default-features = false
|
||
|
|
||
|
[dev-dependencies.rand_xorshift]
|
||
|
version = "0.2"
|
||
|
default-features = false
|
||
|
|
||
|
[features]
|
||
|
default = []
|