mirror of
https://github.com/qwang98/PyChiquito.git
synced 2026-01-09 21:28:01 -05:00
* deleted rust code but before adding submodule * added submodule for steve/frontend branch; updated lib.rs bindings * formatted documents * updated submodule and tests * changes before splitting to multiple files * resolved circular reference and formatted files * fixed uuid and untied constraint builder functions from Constraint type * minor * fmt * removed virtual environment folder structure, though we are still using virtual environment by calling source bin/activate before we can use maturin * minor
22 lines
738 B
TOML
22 lines
738 B
TOML
[package]
|
|
name = "rust_chiquito"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "rust_chiquito"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.19.1", features = ["extension-module"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chiquito = { path = "./src/chiquito" }
|
|
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", features = [
|
|
"circuit-params",
|
|
], tag = "v2023_04_20" }
|
|
|
|
[patch."https://github.com/privacy-scaling-explorations/halo2.git"]
|
|
halo2_proofs = { git = "https://github.com/appliedzkp/halo2.git", rev = "d3746109d7d38be53afc8ddae8fdfaf1f02ad1d7" }
|