mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 13:23:10 +00:00
33 lines
603 B
TOML
33 lines
603 B
TOML
[package]
|
|
name = "zkvm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
serde_json.workspace = true
|
|
env_logger.workspace = true
|
|
log.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
risc0-zkvm = { git = "https://github.com/risc0/risc0.git", branch = "release-1.2" }
|
|
test-methods = { path = "test_methods" }
|
|
|
|
[dependencies.accounts]
|
|
path = "../accounts"
|
|
|
|
[dependencies.storage]
|
|
path = "../storage"
|
|
|
|
[dependencies.utxo]
|
|
path = "../utxo"
|
|
|
|
[dependencies.common]
|
|
path = "../common"
|
|
|
|
[features]
|
|
cuda = ["risc0-zkvm/cuda"]
|
|
default = []
|
|
prove = ["risc0-zkvm/prove"]
|