[package] name = "pallet-contracts-mock-network" version = "10.0.0" authors.workspace = true edition.workspace = true license.workspace = true homepage = "https://substrate.io" repository.workspace = true description = "A mock network for testing pallet-contracts (polkadot v1.13.0)" [lints] workspace = true [dependencies] codec = { package = "parity-scale-codec", version = "3.6.12", default-features = false, features = ["derive", "max-encoded-len"] } frame-support = { path = "../../support", default-features = false, version = "35.0.0" } frame-system = { path = "../../system", default-features = false, version = "35.0.0" } pallet-assets = { version = "36.0.0", path = "../../assets" } pallet-balances = { version = "36.0.0", path = "../../balances" } pallet-contracts = { version = "34.0.0", path = ".." } pallet-contracts-uapi = { path = "../uapi", default-features = false, version = "11.0.0" } pallet-contracts-proc-macro = { version = "22.0.0", path = "../proc-macro" } pallet-insecure-randomness-collective-flip = { version = "23.0.0", path = "../../insecure-randomness-collective-flip" } pallet-message-queue = { version = "38.0.0", path = "../../message-queue" } pallet-proxy = { version = "35.0.0", path = "../../proxy" } pallet-timestamp = { version = "34.0.0", path = "../../timestamp" } pallet-utility = { version = "35.0.0", path = "../../utility" } pallet-xcm = { path = "../../../../polkadot/xcm/pallet-xcm", default-features = false, version = "14.0.0" } polkadot-parachain-primitives = { version = "13.0.0", path = "../../../../polkadot/parachain" } polkadot-primitives = { version = "14.0.0", path = "../../../../polkadot/primitives" } polkadot-runtime-parachains = { version = "14.0.0", path = "../../../../polkadot/runtime/parachains" } scale-info = { version = "2.11.1", default-features = false, features = ["derive"] } sp-api = { path = "../../../primitives/api", default-features = false, version = "33.0.0" } sp-core = { path = "../../../primitives/core", default-features = false, version = "34.0.0" } sp-io = { path = "../../../primitives/io", default-features = false, version = "37.0.0" } sp-keystore = { version = "0.40.0", path = "../../../primitives/keystore" } sp-runtime = { path = "../../../primitives/runtime", default-features = false, version = "38.0.0" } sp-std = { path = "../../../primitives/std", default-features = false, version = "14.0.0" } sp-tracing = { version = "17.0.0", path = "../../../primitives/tracing" } xcm = { package = "staging-xcm", path = "../../../../polkadot/xcm", default-features = false, version = "14.0.0" } xcm-builder = { package = "staging-xcm-builder", path = "../../../../polkadot/xcm/xcm-builder", version = "14.0.0" } xcm-executor = { package = "staging-xcm-executor", path = "../../../../polkadot/xcm/xcm-executor", default-features = false, version = "14.0.0" } xcm-simulator = { version = "14.0.0", path = "../../../../polkadot/xcm/xcm-simulator" } [dev-dependencies] assert_matches = "1" pretty_assertions = "1" pallet-contracts-fixtures = { path = "../fixtures" } [features] default = ["std"] std = [ "codec/std", "frame-support/std", "frame-system/std", "pallet-balances/std", "pallet-contracts/std", "pallet-insecure-randomness-collective-flip/std", "pallet-proxy/std", "pallet-timestamp/std", "pallet-utility/std", "pallet-xcm/std", "scale-info/std", "sp-api/std", "sp-core/std", "sp-io/std", "sp-keystore/std", "sp-runtime/std", "sp-std/std", "xcm-executor/std", "xcm/std", ] runtime-benchmarks = [ "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-assets/runtime-benchmarks", "pallet-balances/runtime-benchmarks", "pallet-contracts/runtime-benchmarks", "pallet-message-queue/runtime-benchmarks", "pallet-proxy/runtime-benchmarks", "pallet-timestamp/runtime-benchmarks", "pallet-utility/runtime-benchmarks", "pallet-xcm/runtime-benchmarks", "polkadot-parachain-primitives/runtime-benchmarks", "polkadot-primitives/runtime-benchmarks", "polkadot-runtime-parachains/runtime-benchmarks", "sp-runtime/runtime-benchmarks", "xcm-builder/runtime-benchmarks", "xcm-executor/runtime-benchmarks", ]