2019-04-15 15:15:48 +00:00
|
|
|
[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 }
|
2019-04-15 15:45:54 +00:00
|
|
|
hashbrown = { version = "0.1.8", optional = true }
|
2019-04-15 15:15:48 +00:00
|
|
|
|
2019-04-15 17:43:51 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
assert_matches = "1.1"
|
|
|
|
|
2019-04-15 15:15:48 +00:00
|
|
|
[features]
|
|
|
|
default = ["std"]
|
|
|
|
std = ["parity-wasm/std"]
|
2019-04-15 15:45:54 +00:00
|
|
|
core = [
|
|
|
|
"hashbrown/nightly"
|
|
|
|
]
|