mirror of
https://github.com/eth-act/ere.git
synced 2026-02-19 11:54:42 -05:00
25 lines
607 B
TOML
25 lines
607 B
TOML
[package]
|
|
name = "ere-test-utils"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
rand = { workspace = true, optional = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_bytes = { workspace = true, features = ["alloc"] }
|
|
sha2.workspace = true
|
|
|
|
# Local dependencies
|
|
ere-zkvm-interface = { workspace = true, optional = true }
|
|
ere-platform-trait.workspace = true
|
|
ere-io = { workspace = true, features = ["bincode", "cbor"] }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
host = ["dep:rand", "dep:ere-zkvm-interface"]
|