diff --git a/Cargo.lock b/Cargo.lock index 306fd13201..3e097cacab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -404,12 +404,6 @@ dependencies = [ "wait-timeout", ] -[[package]] -name = "assert_matches" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" - [[package]] name = "async-channel" version = "1.9.0" @@ -4141,7 +4135,6 @@ dependencies = [ "pallet-contracts", "pallet-contracts-primitives", "pallet-contracts-registry", - "pallet-conviction-voting", "pallet-core-fellowship", "pallet-custom-account", "pallet-democracy", @@ -4174,7 +4167,6 @@ dependencies = [ "pallet-recovery", "pallet-referenda", "pallet-registry", - "pallet-remark", "pallet-root-testing", "pallet-safe-mode", "pallet-salary", @@ -4184,7 +4176,6 @@ dependencies = [ "pallet-staking", "pallet-staking-reward-curve", "pallet-staking-runtime-api", - "pallet-statement", "pallet-sudo", "pallet-timestamp", "pallet-transaction-payment", @@ -6171,21 +6162,6 @@ dependencies = [ "polkavm-derive", ] -[[package]] -name = "pallet-conviction-voting" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#65a434a0ed474c14f692dcf9f69f8da66a99d401" -dependencies = [ - "assert_matches", - "frame-support", - "frame-system", - "parity-scale-codec", - "scale-info", - "sp-io", - "sp-runtime", - "sp-std", -] - [[package]] name = "pallet-core-fellowship" version = "4.0.0-dev" @@ -6780,21 +6756,6 @@ dependencies = [ "sp-std", ] -[[package]] -name = "pallet-remark" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#65a434a0ed474c14f692dcf9f69f8da66a99d401" -dependencies = [ - "frame-support", - "frame-system", - "parity-scale-codec", - "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", -] - [[package]] name = "pallet-root-testing" version = "1.0.0-dev" @@ -6955,24 +6916,6 @@ dependencies = [ "sp-api", ] -[[package]] -name = "pallet-statement" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#65a434a0ed474c14f692dcf9f69f8da66a99d401" -dependencies = [ - "frame-support", - "frame-system", - "log", - "parity-scale-codec", - "scale-info", - "sp-api", - "sp-core", - "sp-io", - "sp-runtime", - "sp-statement-store", - "sp-std", -] - [[package]] name = "pallet-sudo" version = "4.0.0-dev" diff --git a/substrate/bin/node/cli/Cargo.toml b/substrate/bin/node/cli/Cargo.toml index 6e4beeb687..42019935ca 100644 --- a/substrate/bin/node/cli/Cargo.toml +++ b/substrate/bin/node/cli/Cargo.toml @@ -59,7 +59,7 @@ sp-keyring = { branch = "release-polkadot-v1.1.0", git = "https://github.com/par sp-keystore = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk" } sp-consensus = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk" } sp-transaction-storage-proof = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk" } -sp-io = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk" } +sp-io = { default-features = false, branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk" } # client dependencies sc-client-api = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk" } diff --git a/substrate/bin/node/runtime/Cargo.toml b/substrate/bin/node/runtime/Cargo.toml index 2a9544da1e..5d50f98a36 100644 --- a/substrate/bin/node/runtime/Cargo.toml +++ b/substrate/bin/node/runtime/Cargo.toml @@ -72,7 +72,6 @@ pallet-collective = { branch = "release-polkadot-v1.1.0", git = "https://github. pallet-contracts = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-contracts-primitives = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-contracts-registry = { path = "../../../frame/contracts-registry", default-features = false } -pallet-conviction-voting = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-core-fellowship = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-custom-account = { path = "../../../frame/custom-account", default-features = false } pallet-democracy = { path = "../../../frame/democracy", default-features = false} @@ -105,7 +104,6 @@ pallet-insecure-randomness-collective-flip = { branch = "release-polkadot-v1.1.0 pallet-ranked-collective = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-recovery = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-referenda = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} -pallet-remark = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-registry = { path = "../../../frame/registry", default-features = false } pallet-root-testing = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-salary = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} @@ -114,7 +112,6 @@ pallet-session-benchmarking = { branch = "release-polkadot-v1.1.0", git = "https pallet-staking = { path = "../../../frame/staking", default-features = false } pallet-staking-reward-curve = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-staking-runtime-api = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} -pallet-statement = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-scheduler = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-sudo = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false} pallet-timestamp = { branch = "release-polkadot-v1.1.0", git = "https://github.com/paritytech/polkadot-sdk", default-features = false}