-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from centrifuge/polkadot-v0.9.29
Polkadot v0.9.29
- Loading branch information
Showing
13 changed files
with
1,553 additions
and
1,124 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
members = [ | ||
"core", | ||
"core/src/builder/companion", | ||
"core/src/tests/test-parachain", | ||
"fudge", | ||
"integration_test" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
[package] | ||
name = "fudge-test-runtime" | ||
version = "0.10.12" | ||
edition = "2021" | ||
build = "build.rs" | ||
license = "LGPL-3.0" | ||
|
||
[dependencies] | ||
# third-party dependencies | ||
codec = { package = "parity-scale-codec", version = "3.0", default-features = false, features = ["derive"] } | ||
scale-info = { version = "2.0", default-features = false, features = ["derive"] } | ||
integer-sqrt = { version = "0.1.2" } | ||
safe-mix = { version = "1.0", default-features = false } | ||
smallvec = "1.6.1" | ||
static_assertions = "1.1.0" | ||
hex-literal = { version = "0.2.1", optional = true } | ||
rustc-hex = { version = "2.0", optional = true } | ||
serde = { version = "1.0.102", optional = true } | ||
|
||
# parachain | ||
parachain-info = { git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.29" } | ||
cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.29" } | ||
cumulus-primitives-core = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.29" } | ||
cumulus-primitives-utility = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.29" } | ||
cumulus-pallet-aura-ext = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.29" } | ||
cumulus-primitives-timestamp = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.29" } | ||
pallet-collator-selection = {git = "https://github.com/paritytech/cumulus", default-features = false, branch = "polkadot-v0.9.29" } | ||
|
||
# polkadot dependencies | ||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "release-v0.9.29" } | ||
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "release-v0.9.29" } | ||
|
||
# primitives | ||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" } | ||
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
node-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" } | ||
|
||
# frame dependencies | ||
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "polkadot-v0.9.29" } | ||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false , optional = true , branch = "polkadot-v0.9.29" } | ||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["historical"] , branch = "polkadot-v0.9.29" } | ||
pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.29" } | ||
pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" } | ||
pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" } | ||
pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" } | ||
pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" } | ||
|
||
[build-dependencies] | ||
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" } | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"sp-authority-discovery/std", | ||
"pallet-authorship/std", | ||
"pallet-balances/std", | ||
"sp-block-builder/std", | ||
"codec/std", | ||
"frame-executive/std", | ||
"sp-inherents/std", | ||
"pallet-scheduler/std", | ||
"node-primitives/std", | ||
"sp-offchain/std", | ||
"sp-core/std", | ||
"sp-std/std", | ||
"serde", | ||
"pallet-session/std", | ||
"sp-api/std", | ||
"sp-runtime/std", | ||
"sp-staking/std", | ||
"sp-session/std", | ||
"frame-support/std", | ||
"frame-system/std", | ||
"pallet-timestamp/std", | ||
"pallet-transaction-payment/std", | ||
"sp-transaction-pool/std", | ||
"sp-version/std", | ||
"sp-arithmetic/std", | ||
"sp-io/std", | ||
"rustc-hex", | ||
"safe-mix/std", | ||
"cumulus-pallet-parachain-system/std", | ||
"cumulus-primitives-timestamp/std", | ||
"pallet-collator-selection/std", | ||
"parachain-info/std", | ||
"cumulus-pallet-aura-ext/std", | ||
"pallet-aura/std", | ||
"sp-consensus-aura/std", | ||
"polkadot-runtime-common/std", | ||
"pallet-treasury/std", | ||
"pallet-preimage/std", | ||
"pallet-identity/std", | ||
"pallet-sudo/std" | ||
] | ||
|
||
# A feature that should be enabled when the runtime should be build for on-chain | ||
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm | ||
# to make it smaller like logging for example. | ||
on-chain-release-build = [ | ||
"sp-api/disable-logging", | ||
] | ||
|
||
# Set timing constants (e.g. session period) to faster versions to speed up testing. | ||
fast-runtime = [] |
Oops, something went wrong.