mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-01-10 13:18:04 -05:00
Based on commit 1dbe4db - Split into two crates, lib and cli - upgrade stwo, marked one stwo test `should_panic` @ShuangWu121 - various clippy and fmt fixes linked to the rust version update - bring all rust versions to 2025-05-14. CI still installs other versions for openvm which uses them internally. The stable rust version we test on is bumped to 1.85 - remove `examples` and related tests, which test the powdr crate on the previous version of powdr (since it uses another nightly). Happy to discuss this if it's important @leonardoalt
30 lines
805 B
TOML
30 lines
805 B
TOML
[package]
|
|
name = "cli-openvm"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "powdr_openvm"
|
|
path = "src/main.rs"
|
|
bench = false # See https://github.com/bheisler/criterion.rs/issues/458
|
|
|
|
[dependencies]
|
|
openvm-sdk = { git = "https://github.com/powdr-labs/openvm.git", rev = "2868049" }
|
|
openvm-stark-sdk = { git = "https://github.com/powdr-labs/stark-backend.git", rev = "dacb25f", default-features = false }
|
|
openvm-stark-backend = { git = "https://github.com/powdr-labs/stark-backend.git", rev = "dacb25f", default-features = false }
|
|
|
|
powdr-openvm.workspace = true
|
|
|
|
eyre = "0.6.12"
|
|
tracing = "0.1.40"
|
|
|
|
clap = { version = "^4.3", features = ["derive"] }
|
|
|
|
serde_cbor = "0.11.2"
|
|
|
|
[lints]
|
|
workspace = true
|