mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 19:47:59 +00:00
ffce18b994
* partial impl * more checks * improve TestExternalities + tests * make tombstone raw to derive Eq * remove before merge * add test * fmt * update test * doc * bump version * fix testing * update runtime * Fix TrieIdGenerator * fix dummy trie id generator * update test * bump version * format * Update core/state-machine/src/testing.rs Co-Authored-By: cheme <emericchevalier.pro@gmail.com> * document test * Apply suggestions from code review Co-Authored-By: DemiMarie-temp <50585338+DemiMarie-temp@users.noreply.github.com> * refactor * fix * fmt * address review * impl last_write * Fix storage size, test, remove size in tombstone * fix * Update srml/contract/src/lib.rs Co-Authored-By: Sergei Pepyakin <s.pepyakin@gmail.com> * comment * child_storage_root as &[u8]
50 lines
1.7 KiB
TOML
50 lines
1.7 KiB
TOML
[package]
|
|
name = "srml-contract"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
pwasm-utils = { version = "0.6.1", default-features = false }
|
|
parity-codec = { version = "3.3", default-features = false, features = ["derive"] }
|
|
parity-wasm = { version = "0.31", default-features = false }
|
|
wasmi-validation = { version = "0.1", default-features = false }
|
|
substrate-primitives = { path = "../../core/primitives", default-features = false }
|
|
runtime-primitives = { package = "sr-primitives", path = "../../core/sr-primitives", default-features = false }
|
|
runtime-io = { package = "sr-io", path = "../../core/sr-io", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
sandbox = { package = "sr-sandbox", path = "../../core/sr-sandbox", default-features = false }
|
|
srml-support = { path = "../support", default-features = false }
|
|
system = { package = "srml-system", path = "../system", default-features = false }
|
|
timestamp = { package = "srml-timestamp", path = "../timestamp", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
wabt = "~0.7.4"
|
|
assert_matches = "1.1"
|
|
hex-literal = "0.2.0"
|
|
consensus = { package = "srml-consensus", path = "../consensus" }
|
|
balances = { package = "srml-balances", path = "../balances" }
|
|
hex = "0.3"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
core = [
|
|
"wasmi-validation/core",
|
|
]
|
|
std = [
|
|
"serde",
|
|
"parity-codec/std",
|
|
"substrate-primitives/std",
|
|
"runtime-primitives/std",
|
|
"runtime-io/std",
|
|
"rstd/std",
|
|
"sandbox/std",
|
|
"srml-support/std",
|
|
"system/std",
|
|
"timestamp/std",
|
|
"parity-wasm/std",
|
|
"pwasm-utils/std",
|
|
"wasmi-validation/std",
|
|
]
|