mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-06-29 18:39:30 +00:00
23 lines
632 B
TOML
23 lines
632 B
TOML
[package]
|
|
name = "cross_zone_inbox_core"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
lee_core.workspace = true
|
|
serde = { workspace = true, features = ["alloc"] }
|
|
risc0-zkvm.workspace = true
|
|
borsh.workspace = true
|
|
lee = { workspace = true, optional = true }
|
|
ping_core = { workspace = true, optional = true }
|
|
bridge_lock_core = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
# Host-only transaction builder and emission extractor; pull `lee` and the
|
|
# emitter cores, so the risc0 guest builds without them.
|
|
host = ["dep:lee", "dep:ping_core", "dep:bridge_lock_core"]
|