mirror of
https://github.com/eth-act/ere.git
synced 2026-04-25 03:00:10 -04:00
* feat: add `ere-zisk` and `compile` functionality * fix: use `FixintEncoding` for `Input::as_bytes` to make it deterministic * feat: implement `zkVM::execute` * fix: make `install_zisk_sdk.sh` work with docker * chore: add comment why use `#[should_panic]` * feat: use command `cargo-zisk ...` for `compile`, `execute`, `prove` and `verify` * ci * fix: invalid proof
20 lines
361 B
TOML
20 lines
361 B
TOML
[package]
|
|
name = "ere-zisk"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
zkvm-interface = { workspace = true }
|
|
thiserror = "2"
|
|
toml = "0.8"
|
|
tracing = "0.1"
|
|
tempfile = "3.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
bincode = "1.3"
|
|
|
|
[lib]
|
|
name = "ere_zisk"
|
|
path = "src/lib.rs"
|