mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 08:18:04 +00:00
79feb23a22
* refactor sr_primitives. * Fix try build error. * Line-width * Ui test. * Final fixes. * Fix build again. * bring back ui test. * Fix unsigned import. * Another ui fix. * Also refactor substrate-primitives * Fix benchmarks. * Fix doc test. * fix doc tests
49 lines
1.6 KiB
TOML
49 lines
1.6 KiB
TOML
[package]
|
|
name = "srml-contracts"
|
|
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 = "4.1.1", default-features = false, features = ["derive"] }
|
|
parity-wasm = { version = "0.31", default-features = false }
|
|
wasmi-validation = { version = "0.1", 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 }
|
|
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"
|
|
balances = { package = "srml-balances", path = "../balances" }
|
|
hex = "0.3"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
core = [
|
|
"wasmi-validation/core",
|
|
]
|
|
std = [
|
|
"serde",
|
|
"parity-codec/std",
|
|
"primitives/std",
|
|
"sr-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",
|
|
]
|