cultivar/executor/Cargo.toml

22 lines
504 B
TOML
Raw Permalink Normal View History

2023-04-01 05:52:41 +00:00
[package]
name = "executor"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-07-17 22:58:44 +00:00
dashmap = "5.5.0"
2023-04-01 05:52:41 +00:00
cultivar-common = { path = "../common", features = ["std"] }
2023-07-17 22:58:44 +00:00
once_cell = "1.18.0"
parity-scale-codec = "3.6.3"
2023-04-01 05:52:41 +00:00
parking_lot = "0.12.1"
2023-07-17 22:58:44 +00:00
sc-executor-common = "0.22.0"
sc-executor-wasmtime = "0.22.0"
2023-04-01 14:02:42 +00:00
sp-runtime-interface = { version = "16.0.0", default-features = false, features = ["std"] }
sp-wasm-interface = "13.0.0"
2023-04-01 05:52:41 +00:00
[features]
default = ["std"]
# This is needed for proc macro runtime-interface
std = []