mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
Update dependencies of pallet_contracts (#8637)
* Update parity-wasm * Cleanup Cargo.toml files - Sort dependencies - Remove minor and fix version where they are not necessary * Update pretty_assertions * Update rand
This commit is contained in:
committed by
GitHub
parent
ea10494ca9
commit
18000a9ae8
@@ -14,35 +14,39 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
log = { version = "0.4", default-features = false }
|
||||
parity-wasm = { version = "0.42", default-features = false }
|
||||
pwasm-utils = { version = "0.17", default-features = false }
|
||||
serde = { version = "1", optional = true, features = ["derive"] }
|
||||
wasmi-validation = { version = "0.4", default-features = false }
|
||||
|
||||
# Only used in benchmarking to generate random contract code
|
||||
rand = { version = "0.8", optional = true, default-features = false }
|
||||
rand_pcg = { version = "0.3", optional = true }
|
||||
|
||||
# Substrate Dependencies
|
||||
frame-benchmarking = { version = "3.1.0", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||
pallet-contracts-primitives = { version = "3.0.0", default-features = false, path = "common" }
|
||||
pallet-contracts-proc-macro = { version = "3.0.0", path = "proc-macro" }
|
||||
parity-wasm = { version = "0.41.0", default-features = false }
|
||||
pwasm-utils = { version = "0.16", default-features = false }
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-sandbox = { version = "0.9.0", default-features = false, path = "../../primitives/sandbox" }
|
||||
wasmi-validation = { version = "0.3.0", default-features = false }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
# Only used in benchmarking to generate random contract code
|
||||
rand = { version = "0.7.0", optional = true, default-features = false }
|
||||
rand_pcg = { version = "0.2.1", optional = true }
|
||||
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.3.0"
|
||||
hex-literal = "0.3.1"
|
||||
assert_matches = "1"
|
||||
hex-literal = "0.3"
|
||||
paste = "1"
|
||||
pretty_assertions = "0.7"
|
||||
wat = "1"
|
||||
|
||||
# Substrate Dependencies
|
||||
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||
pallet-timestamp = { version = "3.0.0", path = "../timestamp" }
|
||||
pallet-randomness-collective-flip = { version = "3.0.0", path = "../randomness-collective-flip" }
|
||||
paste = "1.0"
|
||||
pretty_assertions = "0.6.1"
|
||||
wat = "1.0"
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
Reference in New Issue
Block a user