[package] name = 'cumulus-contracts-parachain-runtime' version = '0.1.0' authors = ["Parity Technologies "] edition = '2018' [dependencies] serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] } cumulus-token-dealer = { path = "../pallets/token-dealer", default-features = false} parachain-info = { path = "../pallets/parachain-info", default-features = false} rococo-parachain-primitives = { path = "../primitives", default-features = false} # Substrate dependencies sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } # In-Tree Fork of seal that does not use child trie nor storage transactions cumulus-pallet-contracts = { path = "../pallets/contracts", default-features = false } cumulus-pallet-contracts-primitives = { path = "../pallets/contracts/common", default-features = false } cumulus-pallet-contracts-rpc-runtime-api = { path = "../pallets/contracts/rpc/runtime-api", default-features = false } # Cumulus dependencies cumulus-runtime = { path = "../../runtime", default-features = false } cumulus-parachain-upgrade = { path = "../../parachain-upgrade", default-features = false } cumulus-message-broker = { path = "../../message-broker", default-features = false } cumulus-upward-message = { path = "../../upward-message", default-features = false } cumulus-primitives = { path = "../../primitives", default-features = false } # Polkadot dependencies polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch", default-features = false } [build-dependencies] wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.6" } [features] default = [ "std" ] std = [ "codec/std", "serde", "sp-api/std", "sp-std/std", "sp-io/std", "sp-core/std", "sp-runtime/std", "sp-version/std", "sp-offchain/std", "sp-session/std", "sp-block-builder/std", "sp-transaction-pool/std", "sp-inherents/std", "frame-support/std", "frame-executive/std", "frame-system/std", "pallet-balances/std", "cumulus-pallet-contracts/std", "cumulus-pallet-contracts-primitives/std", "cumulus-pallet-contracts-rpc-runtime-api/std", "pallet-randomness-collective-flip/std", "pallet-timestamp/std", "pallet-sudo/std", "pallet-transaction-payment/std", "parachain-info/std", "rococo-parachain-primitives/std", "cumulus-runtime/std", "cumulus-parachain-upgrade/std", "cumulus-message-broker/std", "cumulus-upward-message/std", "cumulus-primitives/std", "polkadot-parachain/std", "cumulus-token-dealer/std", ] # Will be enabled by the `wasm-builder` when building the runtime for WASM. runtime-wasm = [ "cumulus-upward-message/runtime-wasm", ]