2020-08-22 20:15:39 +00:00
|
|
|
[package]
|
2021-03-03 21:46:11 +00:00
|
|
|
name = "pasta_curves"
|
|
|
|
|
description = "Implementation of the Pallas and Vesta (Pasta) curve cycle"
|
|
|
|
|
version = "0.0.0"
|
2020-08-22 20:15:39 +00:00
|
|
|
authors = [
|
|
|
|
|
"Sean Bowe <sean@electriccoin.co>",
|
|
|
|
|
"Ying Tong Lai <yingtong@electriccoin.co>",
|
2020-11-07 05:22:52 +00:00
|
|
|
"Daira Hopwood <daira@electriccoin.co>",
|
2020-11-10 16:52:41 +00:00
|
|
|
"Jack Grigg <jack@electriccoin.co>",
|
2020-08-22 20:15:39 +00:00
|
|
|
]
|
|
|
|
|
edition = "2018"
|
|
|
|
|
license = "TGPPL"
|
2021-03-03 21:46:11 +00:00
|
|
|
repository = "https://github.com/zcash/pasta_curves"
|
|
|
|
|
documentation = "https://docs.rs/pasta_curves"
|
2020-08-22 20:15:39 +00:00
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
|
|
# We are not publishing this yet.
|
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2021-01-22 21:13:11 +00:00
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
|
2020-08-22 20:15:39 +00:00
|
|
|
|
2020-09-15 16:44:56 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
|
criterion = "0.3"
|
|
|
|
|
|
2021-01-13 13:24:47 +00:00
|
|
|
[[bench]]
|
|
|
|
|
name = "hashtocurve"
|
|
|
|
|
harness = false
|
|
|
|
|
|
2020-08-22 20:15:39 +00:00
|
|
|
[dependencies]
|
2020-12-02 16:13:42 +00:00
|
|
|
subtle = "2.3"
|
2021-02-17 20:42:27 +00:00
|
|
|
ff = "0.9"
|
2021-02-22 19:02:53 +00:00
|
|
|
group = "0.9"
|
2021-02-17 20:42:27 +00:00
|
|
|
rand = "0.8"
|
2020-12-23 23:09:17 +00:00
|
|
|
blake2b_simd = "0.5"
|
2021-01-04 23:39:52 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
|
static_assertions = "1.1.0"
|
2020-12-01 08:19:07 +00:00
|
|
|
|
2021-02-14 16:24:15 +00:00
|
|
|
# Temporary workaround for https://github.com/myrrlyn/funty/issues/3
|
|
|
|
|
funty = "=1.1.0"
|