18 lines
411 B
TOML
18 lines
411 B
TOML
[package]
|
|
name = "wasmi-validation"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
parity-wasm = { version = "0.31", default-features = false }
|
|
memory_units_crate = { package = "memory_units", version = "0.3.0" }
|
|
hashbrown = { version = "0.1.8", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["parity-wasm/std"]
|
|
core = [
|
|
"hashbrown/nightly"
|
|
]
|