pasta_curves/Cargo.toml

51 lines
1016 B
TOML
Raw Normal View History

2020-08-22 13:15:39 -07:00
[package]
name = "halo2"
version = "0.0.1"
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"
description = """
Fast proof-carrying data implementation with no trusted setup
"""
license = "TGPPL"
repository = "https://github.com/Electric-Coin-Company/halo2"
documentation = "https://docs.rs/halo2"
readme = "README.md"
# We are not publishing this yet.
publish = false
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "arithmetic"
harness = false
2020-10-13 14:06:21 -07:00
[[bench]]
name = "plonk"
harness = false
2020-08-22 13:15:39 -07:00
[dependencies]
bitvec = "0.18"
subtle = "2.3"
2020-08-22 13:15:39 -07:00
crossbeam-utils = "0.7"
ff = "0.8"
2020-12-22 04:27:36 -08:00
metrics = "=0.13.0-alpha.13"
metrics-macros = "=0.1.0-alpha.9"
2020-08-22 13:15:39 -07:00
num_cpus = "1.13"
rand = "0.7"
blake2b_simd = "0.5"
lazy_static = "1.4.0"
static_assertions = "1.1.0"
[features]
sanity-checks = []