mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 11:38:01 +00:00
34c7338211
* Abstract Randomness trait * bump version * fix doc test * simpify code a bit * Apply suggestions from code review Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> Co-Authored-By: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * fix tests
46 lines
1.7 KiB
TOML
46 lines
1.7 KiB
TOML
[package]
|
|
name = "srml-contracts"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
pwasm-utils = { version = "0.11.0", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
parity-wasm = { version = "0.40.3", default-features = false }
|
|
wasmi-validation = { version = "0.2.0", default-features = false }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives", default-features = false }
|
|
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 }
|
|
support = { package = "srml-support", path = "../support", default-features = false }
|
|
system = { package = "srml-system", path = "../system", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
wabt = "0.9.2"
|
|
assert_matches = "1.3.0"
|
|
hex-literal = "0.2.1"
|
|
balances = { package = "srml-balances", path = "../balances" }
|
|
hex = "0.3.2"
|
|
timestamp = { package = "srml-timestamp", path = "../timestamp" }
|
|
randomness-collective-flip = { package = "srml-randomness-collective-flip", path = "../randomness-collective-flip" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde",
|
|
"codec/std",
|
|
"primitives/std",
|
|
"sr-primitives/std",
|
|
"runtime-io/std",
|
|
"rstd/std",
|
|
"sandbox/std",
|
|
"support/std",
|
|
"system/std",
|
|
"parity-wasm/std",
|
|
"pwasm-utils/std",
|
|
"wasmi-validation/std",
|
|
]
|