pasta_curves/Cargo.toml

53 lines
1.0 KiB
TOML
Raw Normal View History

2020-08-22 13:15:39 -07:00
[package]
name = "pasta_curves"
description = "Implementation of the Pallas and Vesta (Pasta) curve cycle"
2021-09-02 10:37:13 -07:00
version = "0.2.0"
2020-08-22 13:15:39 -07:00
authors = [
"Sean Bowe <sean@electriccoin.co>",
"Ying Tong Lai <yingtong@electriccoin.co>",
2020-11-06 21:22:52 -08:00
"Daira Hopwood <daira@electriccoin.co>",
2020-11-10 08:52:41 -08:00
"Jack Grigg <jack@electriccoin.co>",
2020-08-22 13:15:39 -07:00
]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zcash/pasta_curves"
documentation = "https://docs.rs/pasta_curves"
2020-08-22 13:15:39 -07:00
readme = "README.md"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
2020-08-22 13:15:39 -07:00
[dev-dependencies]
criterion = "0.3"
rand_xorshift = "0.3"
[[bench]]
name = "hashtocurve"
harness = false
[[bench]]
name = "fp"
harness = false
[[bench]]
name = "fq"
harness = false
[[bench]]
name = "point"
harness = false
2020-08-22 13:15:39 -07:00
[dependencies]
subtle = "2.3"
2021-09-02 10:06:21 -07:00
ff = "0.11"
group = "0.11"
2021-02-17 12:42:27 -08:00
rand = "0.8"
blake2b_simd = "0.5"
lazy_static = "1.4.0"
static_assertions = "1.1.0"
2021-06-01 15:31:00 -07:00
[features]
default = ["bits"]
bits = ["ff/bits"]