pasta_curves-source/Cargo.toml
Jack Grigg 7dd6e65a5f Add halo2::dev::circuit_dot_graph behind dev-graph feature flag
This method renders circuits as dot graphs, to help circuit developers
understand their structure.
2021-02-01 18:38:16 +00:00

57 lines
1.2 KiB
TOML

[package]
name = "halo2"
version = "0.0.1"
authors = [
"Sean Bowe <sean@electriccoin.co>",
"Ying Tong Lai <yingtong@electriccoin.co>",
"Daira Hopwood <daira@electriccoin.co>",
"Jack Grigg <jack@electriccoin.co>",
]
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]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "arithmetic"
harness = false
[[bench]]
name = "plonk"
harness = false
[dependencies]
backtrace = { version = "0.3", optional = true }
bitvec = "0.18"
subtle = "2.3"
crossbeam-utils = "0.7"
ff = "0.8"
metrics = "=0.13.0-alpha.13"
metrics-macros = "=0.1.0-alpha.9"
num_cpus = "1.13"
rand = "0.7"
blake2b_simd = "0.5"
lazy_static = "1.4.0"
static_assertions = "1.1.0"
# Developer tooling dependencies
tabbycat = { version = "0.1", features = ["attributes"], optional = true }
[features]
dev-graph = ["tabbycat"]
gadget-traces = ["backtrace"]
sanity-checks = []