mirror of
https://github.com/AtHeartEngineer/halo2-examples.git
synced 2026-01-09 01:17:59 -05:00
19 lines
528 B
TOML
19 lines
528 B
TOML
[package]
|
|
name = "fibonacci"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "halo2_examples"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
dev-graph = ["halo2_proofs/dev-graph", "plotters"]
|
|
|
|
[dependencies]
|
|
halo2_proofs = { git = "https://github.com/zcash/halo2.git", rev = "a898d65ae3ad3d41987666f6a03cfc15edae01c4"}
|
|
plotters = { version = "0.3.0", optional = true }
|
|
tabbycat = { version = "0.1", features = ["attributes"], optional = true }
|