mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 15:11:02 +00:00
use double quotes instead of single quotes (#815)
This commit is contained in:
@@ -1,62 +1,62 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ['Anonymous']
|
authors = ["Anonymous"]
|
||||||
description = 'Simple staking pallet with a fixed stake.'
|
description = "Simple staking pallet with a fixed stake."
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
homepage = 'https://substrate.io'
|
homepage = "https://substrate.io"
|
||||||
license = 'Apache-2.0'
|
license = "Apache-2.0"
|
||||||
name = 'pallet-collator-selection'
|
name = "pallet-collator-selection"
|
||||||
readme = 'README.md'
|
readme = "README.md"
|
||||||
repository = 'https://github.com/paritytech/cumulus/'
|
repository = "https://github.com/paritytech/cumulus/"
|
||||||
version = '3.0.0'
|
version = "3.0.0"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
targets = ['x86_64-unknown-linux-gnu']
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
log = { version = "0.4.0", default-features = false }
|
log = { version = "0.4.0", default-features = false }
|
||||||
codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = '2.3.0' }
|
codec = { default-features = false, features = ["derive"], package = "parity-scale-codec", version = "2.3.0" }
|
||||||
rand = { version = "0.7.2", default-features = false }
|
rand = { version = "0.7.2", default-features = false }
|
||||||
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
||||||
serde = { version = "1.0.119", default-features = false }
|
serde = { version = "1.0.119", default-features = false }
|
||||||
|
|
||||||
sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-staking = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-staking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-authorship = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-session = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|
||||||
frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-io = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-tracing = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-timestamp = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-aura = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ['std']
|
default = ["std"]
|
||||||
runtime-benchmarks = [
|
runtime-benchmarks = [
|
||||||
'frame-benchmarking/runtime-benchmarks',
|
"frame-benchmarking/runtime-benchmarks",
|
||||||
'frame-support/runtime-benchmarks',
|
"frame-support/runtime-benchmarks",
|
||||||
'frame-system/runtime-benchmarks',
|
"frame-system/runtime-benchmarks",
|
||||||
]
|
]
|
||||||
std = [
|
std = [
|
||||||
'codec/std',
|
"codec/std",
|
||||||
'log/std',
|
"log/std",
|
||||||
'scale-info/std',
|
"scale-info/std",
|
||||||
'rand/std',
|
"rand/std",
|
||||||
'sp-runtime/std',
|
"sp-runtime/std",
|
||||||
'sp-staking/std',
|
"sp-staking/std",
|
||||||
'sp-std/std',
|
"sp-std/std",
|
||||||
'frame-support/std',
|
"frame-support/std",
|
||||||
'frame-system/std',
|
"frame-system/std",
|
||||||
'frame-benchmarking/std',
|
"frame-benchmarking/std",
|
||||||
'pallet-authorship/std',
|
"pallet-authorship/std",
|
||||||
'pallet-session/std',
|
"pallet-session/std",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,19 +13,19 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-session = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = "master" }
|
pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
runtime-benchmarks = [
|
runtime-benchmarks = [
|
||||||
'frame-benchmarking/runtime-benchmarks',
|
"frame-benchmarking/runtime-benchmarks",
|
||||||
'frame-support/runtime-benchmarks',
|
"frame-support/runtime-benchmarks",
|
||||||
'frame-system/runtime-benchmarks',
|
"frame-system/runtime-benchmarks",
|
||||||
]
|
]
|
||||||
std = [
|
std = [
|
||||||
"sp-std/std",
|
"sp-std/std",
|
||||||
|
|||||||
@@ -25,11 +25,11 @@ xcm-executor = { git = "https://github.com/paritytech/polkadot", default-feature
|
|||||||
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-io = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
cumulus-pallet-parachain-system = { path = "../parachain-system" }
|
cumulus-pallet-parachain-system = { path = "../parachain-system" }
|
||||||
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
||||||
pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [ "std" ]
|
default = [ "std" ]
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
hex-literal = { version = '0.3.1', optional = true }
|
hex-literal = { version = "0.3.1", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"]}
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"]}
|
||||||
log = { version = "0.4.14", default-features = false }
|
log = { version = "0.4.14", default-features = false }
|
||||||
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
||||||
@@ -130,7 +130,7 @@ std = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
runtime-benchmarks = [
|
runtime-benchmarks = [
|
||||||
'hex-literal',
|
"hex-literal",
|
||||||
"sp-runtime/runtime-benchmarks",
|
"sp-runtime/runtime-benchmarks",
|
||||||
"xcm-builder/runtime-benchmarks",
|
"xcm-builder/runtime-benchmarks",
|
||||||
"frame-benchmarking/runtime-benchmarks",
|
"frame-benchmarking/runtime-benchmarks",
|
||||||
@@ -142,5 +142,5 @@ runtime-benchmarks = [
|
|||||||
"pallet-template/runtime-benchmarks",
|
"pallet-template/runtime-benchmarks",
|
||||||
"pallet-timestamp/runtime-benchmarks",
|
"pallet-timestamp/runtime-benchmarks",
|
||||||
"pallet-xcm/runtime-benchmarks",
|
"pallet-xcm/runtime-benchmarks",
|
||||||
'cumulus-pallet-session-benchmarking/runtime-benchmarks',
|
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -27,8 +27,8 @@ westmint-runtime = { path = "westmint" }
|
|||||||
parachains-common = { path = "parachains-common" }
|
parachains-common = { path = "parachains-common" }
|
||||||
|
|
||||||
# Substrate dependencies
|
# Substrate dependencies
|
||||||
frame-benchmarking = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
frame-benchmarking-cli = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
@@ -90,8 +90,8 @@ tempfile = "3.2.0"
|
|||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
runtime-benchmarks = [
|
runtime-benchmarks = [
|
||||||
'polkadot-service/runtime-benchmarks',
|
"polkadot-service/runtime-benchmarks",
|
||||||
'statemint-runtime/runtime-benchmarks',
|
"statemint-runtime/runtime-benchmarks",
|
||||||
'statemine-runtime/runtime-benchmarks',
|
"statemine-runtime/runtime-benchmarks",
|
||||||
'westmint-runtime/runtime-benchmarks',
|
"westmint-runtime/runtime-benchmarks",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -6,59 +6,59 @@ edition = "2021"
|
|||||||
description = "Logic which is common to all parachain runtimes"
|
description = "Logic which is common to all parachain runtimes"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
targets = ['x86_64-unknown-linux-gnu']
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# External dependencies
|
# External dependencies
|
||||||
codec = { package = 'parity-scale-codec', version = '2.3.0', features = ['derive'], default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.3.0", features = ["derive"], default-features = false }
|
||||||
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
||||||
|
|
||||||
# Substrate dependencies
|
# Substrate dependencies
|
||||||
sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
sp-std = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
sp-io = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
frame-executive = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
frame-support = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
frame-system = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
pallet-asset-tx-payment = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
pallet-asset-tx-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
pallet-assets = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
pallet-assets = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
pallet-authorship = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
sp-core = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
|
|
||||||
# Polkadot dependencies
|
# Polkadot dependencies
|
||||||
polkadot-runtime-common = { git = 'https://github.com/paritytech/polkadot', default-features = false , branch = "master" }
|
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "master" }
|
||||||
polkadot-primitives = { git = 'https://github.com/paritytech/polkadot', default-features = false , branch = "master" }
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "master" }
|
||||||
xcm = { git = 'https://github.com/paritytech/polkadot', default-features = false , branch = "master" }
|
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "master" }
|
||||||
xcm-executor = { git = 'https://github.com/paritytech/polkadot', default-features = false , branch = "master" }
|
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "master" }
|
||||||
|
|
||||||
# Local dependencies
|
# Local dependencies
|
||||||
pallet-collator-selection = { path = '../../pallets/collator-selection', default-features = false }
|
pallet-collator-selection = { path = "../../pallets/collator-selection", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-io = { git = 'https://github.com/paritytech/substrate', default-features = false , branch = "master" }
|
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }
|
||||||
pallet-authorship = { git = 'https://github.com/paritytech/substrate', default-features = false , branch = "master" }
|
pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
substrate-wasm-builder = { git = 'https://github.com/paritytech/substrate', branch = "master" }
|
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
std = [
|
std = [
|
||||||
'codec/std',
|
"codec/std",
|
||||||
'scale-info/std',
|
"scale-info/std",
|
||||||
'sp-consensus-aura/std',
|
"sp-consensus-aura/std",
|
||||||
'sp-std/std',
|
"sp-std/std",
|
||||||
'sp-io/std',
|
"sp-io/std",
|
||||||
'frame-support/std',
|
"frame-support/std",
|
||||||
'frame-executive/std',
|
"frame-executive/std",
|
||||||
'frame-system/std',
|
"frame-system/std",
|
||||||
'pallet-asset-tx-payment/std',
|
"pallet-asset-tx-payment/std",
|
||||||
'pallet-collator-selection/std',
|
"pallet-collator-selection/std",
|
||||||
'pallet-assets/std',
|
"pallet-assets/std",
|
||||||
'pallet-authorship/std',
|
"pallet-authorship/std",
|
||||||
'pallet-balances/std',
|
"pallet-balances/std",
|
||||||
'polkadot-runtime-common/std',
|
"polkadot-runtime-common/std",
|
||||||
'polkadot-primitives/std',
|
"polkadot-primitives/std",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = 'rococo-parachain-runtime'
|
name = "rococo-parachain-runtime"
|
||||||
version = '0.1.0'
|
version = "0.1.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Simple runtime used by the rococo parachain(s)"
|
description = "Simple runtime used by the rococo parachain(s)"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = 'shell-runtime'
|
name = "shell-runtime"
|
||||||
version = '0.1.0'
|
version = "0.1.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = 'statemine-runtime'
|
name = "statemine-runtime"
|
||||||
version = '2.0.0'
|
version = "2.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Kusama variant of Statemint parachain runtime"
|
description = "Kusama variant of Statemint parachain runtime"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||||
hex-literal = { version = '0.3.1', optional = true }
|
hex-literal = { version = "0.3.1", optional = true }
|
||||||
log = { version = "0.4.14", default-features = false }
|
log = { version = "0.4.14", default-features = false }
|
||||||
parachain-info = { path = "../pallets/parachain-info", default-features = false }
|
parachain-info = { path = "../pallets/parachain-info", default-features = false }
|
||||||
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
||||||
@@ -34,7 +34,7 @@ frame-support = { git = "https://github.com/paritytech/substrate", default-featu
|
|||||||
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
pallet-asset-tx-payment = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
pallet-asset-tx-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
pallet-assets = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
pallet-assets = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
@@ -82,23 +82,23 @@ substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", bran
|
|||||||
[features]
|
[features]
|
||||||
default = [ "std" ]
|
default = [ "std" ]
|
||||||
runtime-benchmarks = [
|
runtime-benchmarks = [
|
||||||
'hex-literal',
|
"hex-literal",
|
||||||
'sp-runtime/runtime-benchmarks',
|
"sp-runtime/runtime-benchmarks",
|
||||||
'xcm-builder/runtime-benchmarks',
|
"xcm-builder/runtime-benchmarks",
|
||||||
'frame-benchmarking/runtime-benchmarks',
|
"frame-benchmarking/runtime-benchmarks",
|
||||||
'frame-system-benchmarking',
|
"frame-system-benchmarking",
|
||||||
'frame-support/runtime-benchmarks',
|
"frame-support/runtime-benchmarks",
|
||||||
'frame-system/runtime-benchmarks',
|
"frame-system/runtime-benchmarks",
|
||||||
'pallet-assets/runtime-benchmarks',
|
"pallet-assets/runtime-benchmarks",
|
||||||
'pallet-balances/runtime-benchmarks',
|
"pallet-balances/runtime-benchmarks",
|
||||||
'pallet-multisig/runtime-benchmarks',
|
"pallet-multisig/runtime-benchmarks",
|
||||||
'pallet-proxy/runtime-benchmarks',
|
"pallet-proxy/runtime-benchmarks",
|
||||||
'cumulus-pallet-session-benchmarking/runtime-benchmarks',
|
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
||||||
'pallet-uniques/runtime-benchmarks',
|
"pallet-uniques/runtime-benchmarks",
|
||||||
'pallet-utility/runtime-benchmarks',
|
"pallet-utility/runtime-benchmarks",
|
||||||
'pallet-timestamp/runtime-benchmarks',
|
"pallet-timestamp/runtime-benchmarks",
|
||||||
'pallet-xcm/runtime-benchmarks',
|
"pallet-xcm/runtime-benchmarks",
|
||||||
'pallet-collator-selection/runtime-benchmarks',
|
"pallet-collator-selection/runtime-benchmarks",
|
||||||
]
|
]
|
||||||
std = [
|
std = [
|
||||||
"codec/std",
|
"codec/std",
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = 'statemint-runtime'
|
name = "statemint-runtime"
|
||||||
version = '1.0.0'
|
version = "1.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Statemint parachain runtime"
|
description = "Statemint parachain runtime"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||||
hex-literal = { version = '0.3.1', optional = true }
|
hex-literal = { version = "0.3.1", optional = true }
|
||||||
log = { version = "0.4.14", default-features = false }
|
log = { version = "0.4.14", default-features = false }
|
||||||
parachain-info = { path = "../pallets/parachain-info", default-features = false }
|
parachain-info = { path = "../pallets/parachain-info", default-features = false }
|
||||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||||
@@ -34,7 +34,7 @@ frame-support = { git = "https://github.com/paritytech/substrate", default-featu
|
|||||||
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
pallet-asset-tx-payment = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
pallet-asset-tx-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
pallet-assets = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
pallet-assets = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
@@ -82,23 +82,23 @@ substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", bran
|
|||||||
[features]
|
[features]
|
||||||
default = [ "std" ]
|
default = [ "std" ]
|
||||||
runtime-benchmarks = [
|
runtime-benchmarks = [
|
||||||
'cumulus-pallet-session-benchmarking/runtime-benchmarks',
|
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
||||||
'hex-literal',
|
"hex-literal",
|
||||||
'sp-runtime/runtime-benchmarks',
|
"sp-runtime/runtime-benchmarks",
|
||||||
'xcm-builder/runtime-benchmarks',
|
"xcm-builder/runtime-benchmarks",
|
||||||
'frame-benchmarking/runtime-benchmarks',
|
"frame-benchmarking/runtime-benchmarks",
|
||||||
'frame-system-benchmarking',
|
"frame-system-benchmarking",
|
||||||
'frame-support/runtime-benchmarks',
|
"frame-support/runtime-benchmarks",
|
||||||
'frame-system/runtime-benchmarks',
|
"frame-system/runtime-benchmarks",
|
||||||
'pallet-assets/runtime-benchmarks',
|
"pallet-assets/runtime-benchmarks",
|
||||||
'pallet-balances/runtime-benchmarks',
|
"pallet-balances/runtime-benchmarks",
|
||||||
'pallet-multisig/runtime-benchmarks',
|
"pallet-multisig/runtime-benchmarks",
|
||||||
'pallet-proxy/runtime-benchmarks',
|
"pallet-proxy/runtime-benchmarks",
|
||||||
'pallet-uniques/runtime-benchmarks',
|
"pallet-uniques/runtime-benchmarks",
|
||||||
'pallet-utility/runtime-benchmarks',
|
"pallet-utility/runtime-benchmarks",
|
||||||
'pallet-timestamp/runtime-benchmarks',
|
"pallet-timestamp/runtime-benchmarks",
|
||||||
'pallet-xcm/runtime-benchmarks',
|
"pallet-xcm/runtime-benchmarks",
|
||||||
'pallet-collator-selection/runtime-benchmarks',
|
"pallet-collator-selection/runtime-benchmarks",
|
||||||
]
|
]
|
||||||
std = [
|
std = [
|
||||||
"codec/std",
|
"codec/std",
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = 'westmint-runtime'
|
name = "westmint-runtime"
|
||||||
version = '1.0.0'
|
version = "1.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Westend variant of Statemint parachain runtime"
|
description = "Westend variant of Statemint parachain runtime"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||||
hex-literal = { version = '0.3.1', optional = true }
|
hex-literal = { version = "0.3.1", optional = true }
|
||||||
log = { version = "0.4.14", default-features = false }
|
log = { version = "0.4.14", default-features = false }
|
||||||
parachain-info = { path = "../pallets/parachain-info", default-features = false }
|
parachain-info = { path = "../pallets/parachain-info", default-features = false }
|
||||||
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
||||||
@@ -34,7 +34,7 @@ frame-support = { git = "https://github.com/paritytech/substrate", default-featu
|
|||||||
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
pallet-asset-tx-payment = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
pallet-asset-tx-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
pallet-assets = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
pallet-assets = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||||
@@ -82,23 +82,23 @@ substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", bran
|
|||||||
[features]
|
[features]
|
||||||
default = [ "std" ]
|
default = [ "std" ]
|
||||||
runtime-benchmarks = [
|
runtime-benchmarks = [
|
||||||
'cumulus-pallet-session-benchmarking/runtime-benchmarks',
|
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
||||||
'hex-literal',
|
"hex-literal",
|
||||||
'sp-runtime/runtime-benchmarks',
|
"sp-runtime/runtime-benchmarks",
|
||||||
'xcm-builder/runtime-benchmarks',
|
"xcm-builder/runtime-benchmarks",
|
||||||
'frame-benchmarking/runtime-benchmarks',
|
"frame-benchmarking/runtime-benchmarks",
|
||||||
'frame-system-benchmarking',
|
"frame-system-benchmarking",
|
||||||
'frame-support/runtime-benchmarks',
|
"frame-support/runtime-benchmarks",
|
||||||
'frame-system/runtime-benchmarks',
|
"frame-system/runtime-benchmarks",
|
||||||
'pallet-assets/runtime-benchmarks',
|
"pallet-assets/runtime-benchmarks",
|
||||||
'pallet-balances/runtime-benchmarks',
|
"pallet-balances/runtime-benchmarks",
|
||||||
'pallet-multisig/runtime-benchmarks',
|
"pallet-multisig/runtime-benchmarks",
|
||||||
'pallet-proxy/runtime-benchmarks',
|
"pallet-proxy/runtime-benchmarks",
|
||||||
'pallet-uniques/runtime-benchmarks',
|
"pallet-uniques/runtime-benchmarks",
|
||||||
'pallet-utility/runtime-benchmarks',
|
"pallet-utility/runtime-benchmarks",
|
||||||
'pallet-timestamp/runtime-benchmarks',
|
"pallet-timestamp/runtime-benchmarks",
|
||||||
'pallet-xcm/runtime-benchmarks',
|
"pallet-xcm/runtime-benchmarks",
|
||||||
'pallet-collator-selection/runtime-benchmarks',
|
"pallet-collator-selection/runtime-benchmarks",
|
||||||
]
|
]
|
||||||
std = [
|
std = [
|
||||||
"codec/std",
|
"codec/std",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cumulus-test-relay-sproof-builder"
|
name = "cumulus-test-relay-sproof-builder"
|
||||||
version = '0.1.0'
|
version = "0.1.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user