diff --git a/Cargo.lock b/Cargo.lock index 6662d32a9b..e5d317150e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6597,7 +6597,7 @@ dependencies = [ [[package]] name = "moonbeam-cli" -version = "0.35.0" +version = "0.36.0" dependencies = [ "clap", "cumulus-client-cli", @@ -6632,7 +6632,7 @@ dependencies = [ [[package]] name = "moonbeam-cli-opt" -version = "0.35.0" +version = "0.36.0" dependencies = [ "account", "bip32", @@ -7118,7 +7118,7 @@ dependencies = [ [[package]] name = "moonbeam-service" -version = "0.35.0" +version = "0.36.0" dependencies = [ "ansi_term", "async-backing-primitives", diff --git a/node/cli-opt/Cargo.toml b/node/cli-opt/Cargo.toml index 737bf77504..07d666ee60 100644 --- a/node/cli-opt/Cargo.toml +++ b/node/cli-opt/Cargo.toml @@ -4,19 +4,19 @@ authors = { workspace = true } edition = "2021" homepage = "https://moonbeam.network" license = "GPL-3.0-only" -version = "0.35.0" +version = "0.36.0" [dependencies] -bip32 = { workspace = true, features = [ "bip39" ] } -clap = { workspace = true, features = [ "derive" ] } -libsecp256k1 = { workspace = true, features = [ "std" ] } +bip32 = { workspace = true, features = ["bip39"] } +clap = { workspace = true, features = ["derive"] } +libsecp256k1 = { workspace = true, features = ["std"] } primitive-types = { workspace = true } sha3 = { workspace = true } tiny-bip39 = { workspace = true } url = { workspace = true } # Moonbeam -account = { workspace = true, features = [ "std" ] } +account = { workspace = true, features = ["std"] } # Substrate -sp-runtime = { workspace = true, features = [ "std" ] } +sp-runtime = { workspace = true, features = ["std"] } diff --git a/node/cli/Cargo.toml b/node/cli/Cargo.toml index a2de1866f8..a0a6c914ff 100644 --- a/node/cli/Cargo.toml +++ b/node/cli/Cargo.toml @@ -2,10 +2,10 @@ name = "moonbeam-cli" authors = { workspace = true } edition = "2021" -version = "0.35.0" +version = "0.36.0" [dependencies] -clap = { workspace = true, features = [ "derive" ] } +clap = { workspace = true, features = ["derive"] } log = { workspace = true } parity-scale-codec = { workspace = true } @@ -23,9 +23,9 @@ sc-service = { workspace = true } sc-sysinfo = { workspace = true } sc-telemetry = { workspace = true } sc-tracing = { workspace = true } -sp-core = { workspace = true, features = [ "std" ] } +sp-core = { workspace = true, features = ["std"] } sp-io = { workspace = true } -sp-runtime = { workspace = true, features = [ "std" ] } +sp-runtime = { workspace = true, features = ["std"] } sp-wasm-interface = { workspace = true } substrate-prometheus-endpoint = { workspace = true } try-runtime-cli = { workspace = true, optional = true } @@ -33,12 +33,12 @@ try-runtime-cli = { workspace = true, optional = true } # Cumulus / Nimbus cumulus-client-cli = { workspace = true } cumulus-client-service = { workspace = true } -cumulus-primitives-core = { workspace = true, features = [ "std" ] } -nimbus-primitives = { workspace = true, features = [ "std" ] } +cumulus-primitives-core = { workspace = true, features = ["std"] } +nimbus-primitives = { workspace = true, features = ["std"] } # Polkadot polkadot-cli = { workspace = true } -polkadot-parachain = { workspace = true, features = [ "std" ] } +polkadot-parachain = { workspace = true, features = ["std"] } polkadot-primitives = { workspace = true } polkadot-service = { workspace = true } @@ -53,19 +53,16 @@ default = [ "westend-native", ] -westend-native = [ "polkadot-service/westend-native" ] +westend-native = ["polkadot-service/westend-native"] -moonbase-native = [ "moonbeam-service/moonbase-native", "westend-native" ] -moonbeam-native = [ "moonbeam-service/moonbeam-native" ] -moonriver-native = [ "moonbeam-service/moonriver-native" ] +moonbase-native = ["moonbeam-service/moonbase-native", "westend-native"] +moonbeam-native = ["moonbeam-service/moonbeam-native"] +moonriver-native = ["moonbeam-service/moonriver-native"] runtime-benchmarks = [ "moonbeam-service/runtime-benchmarks", "polkadot-service/runtime-benchmarks", ] -try-runtime = [ - "moonbeam-service/try-runtime", - "try-runtime-cli/try-runtime", -] +try-runtime = ["moonbeam-service/try-runtime", "try-runtime-cli/try-runtime"] -moonbase-runtime-benchmarks = [ "moonbeam-service/moonbase-runtime-benchmarks" ] +moonbase-runtime-benchmarks = ["moonbeam-service/moonbase-runtime-benchmarks"] diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 8e7212cb1c..898a64e2ba 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -4,7 +4,7 @@ authors = { workspace = true } edition = "2021" homepage = "https://moonbeam.network" license = "GPL-3.0-only" -version = "0.35.0" +version = "0.36.0" [dependencies] ansi_term = { workspace = true } @@ -14,18 +14,18 @@ bip32 = { workspace = true } derive_more = { workspace = true } exit-future = { workspace = true } flume = { workspace = true } -futures = { workspace = true, features = [ "compat" ] } +futures = { workspace = true, features = ["compat"] } hex-literal = { workspace = true } -jsonrpsee = { workspace = true, features = [ "macros", "server" ] } -libsecp256k1 = { workspace = true, features = [ "hmac" ] } +jsonrpsee = { workspace = true, features = ["macros", "server"] } +libsecp256k1 = { workspace = true, features = ["hmac"] } log = { workspace = true } maplit = { workspace = true } parking_lot = { workspace = true } -serde = { workspace = true, features = [ "derive" ] } +serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } sha3 = { workspace = true } tiny-bip39 = { workspace = true } -tokio = { workspace = true, features = [ "macros", "sync" ] } +tokio = { workspace = true, features = ["macros", "sync"] } trie-root = { workspace = true } # Moonbeam @@ -52,8 +52,8 @@ moonbeam-runtime = { workspace = true, optional = true } moonriver-runtime = { workspace = true, optional = true } # Substrate -frame-system-rpc-runtime-api = { workspace = true, features = [ "std" ] } -pallet-transaction-payment = { workspace = true, features = [ "std" ] } +frame-system-rpc-runtime-api = { workspace = true, features = ["std"] } +pallet-transaction-payment = { workspace = true, features = ["std"] } pallet-transaction-payment-rpc = { workspace = true } pallet-transaction-payment-rpc-runtime-api = { workspace = true, features = [ "std", @@ -81,21 +81,21 @@ sc-telemetry = { workspace = true } sc-tracing = { workspace = true } sc-transaction-pool = { workspace = true } sc-transaction-pool-api = { workspace = true } -sp-api = { workspace = true, features = [ "std" ] } -sp-block-builder = { workspace = true, features = [ "std" ] } +sp-api = { workspace = true, features = ["std"] } +sp-block-builder = { workspace = true, features = ["std"] } sp-blockchain = { workspace = true } sp-consensus = { workspace = true } -sp-core = { workspace = true, features = [ "std" ] } -sp-inherents = { workspace = true, features = [ "std" ] } -sp-io = { workspace = true, features = [ "std" ] } -sp-keystore = { workspace = true, features = [ "std" ] } -sp-offchain = { workspace = true, features = [ "std" ] } -sp-runtime = { workspace = true, features = [ "std" ] } -sp-session = { workspace = true, features = [ "std" ] } -sp-storage = { workspace = true, features = [ "std" ] } -sp-timestamp = { workspace = true, features = [ "std" ] } -sp-transaction-pool = { workspace = true, features = [ "std" ] } -sp-trie = { workspace = true, features = [ "std" ] } +sp-core = { workspace = true, features = ["std"] } +sp-inherents = { workspace = true, features = ["std"] } +sp-io = { workspace = true, features = ["std"] } +sp-keystore = { workspace = true, features = ["std"] } +sp-offchain = { workspace = true, features = ["std"] } +sp-runtime = { workspace = true, features = ["std"] } +sp-session = { workspace = true, features = ["std"] } +sp-storage = { workspace = true, features = ["std"] } +sp-timestamp = { workspace = true, features = ["std"] } +sp-transaction-pool = { workspace = true, features = ["std"] } +sp-trie = { workspace = true, features = ["std"] } substrate-frame-rpc-system = { workspace = true } substrate-prometheus-endpoint = { workspace = true } @@ -103,12 +103,15 @@ substrate-prometheus-endpoint = { workspace = true } fc-consensus = { workspace = true } fc-db = { workspace = true } fc-api = { workspace = true } -fc-mapping-sync = { workspace = true, features = [ "sql" ] } -fc-rpc = { workspace = true, features = [ "rpc-binary-search-estimate", "txpool" ] } +fc-mapping-sync = { workspace = true, features = ["sql"] } +fc-rpc = { workspace = true, features = [ + "rpc-binary-search-estimate", + "txpool", +] } fc-rpc-core = { workspace = true } -fp-consensus = { workspace = true, features = [ "std" ] } -fp-rpc = { workspace = true, features = [ "std" ] } -fp-storage = { workspace = true, features = [ "std" ] } +fp-consensus = { workspace = true, features = ["std"] } +fp-rpc = { workspace = true, features = ["std"] } +fp-storage = { workspace = true, features = ["std"] } pallet-ethereum = { workspace = true, features = [ "forbid-evm-reentrancy", "std", @@ -143,7 +146,7 @@ polkadot-service = { workspace = true } xcm = { workspace = true } # Benchmarking -frame-benchmarking = { workspace = true, features = [ "std" ] } +frame-benchmarking = { workspace = true, features = ["std"] } frame-benchmarking-cli = { workspace = true } [dev-dependencies] @@ -157,7 +160,7 @@ tempfile = { workspace = true } polkadot-runtime-common = { workspace = true } # Substrate dev-dependencies -pallet-sudo = { workspace = true, features = [ "std" ] } +pallet-sudo = { workspace = true, features = ["std"] } substrate-test-client = { workspace = true } substrate-test-runtime = { workspace = true } substrate-test-runtime-client = { workspace = true } @@ -174,18 +177,15 @@ default = [ "westend-native", ] -rococo-native = [ - "polkadot-cli/rococo-native", - "polkadot-service/rococo-native", -] +rococo-native = ["polkadot-cli/rococo-native", "polkadot-service/rococo-native"] westend-native = [ "polkadot-cli/westend-native", "polkadot-service/westend-native", ] -moonbase-native = [ "moonbase-runtime", "westend-native" ] -moonbeam-native = [ "moonbeam-runtime" ] -moonriver-native = [ "moonriver-runtime" ] +moonbase-native = ["moonbase-runtime", "westend-native"] +moonbeam-native = ["moonbeam-runtime"] +moonriver-native = ["moonriver-runtime"] test-spec = [] @@ -199,7 +199,7 @@ runtime-benchmarks = [ "pallet-ethereum/runtime-benchmarks", ] -try-runtime = [ "moonbase-runtime", "moonbase-runtime/try-runtime" ] +try-runtime = ["moonbase-runtime", "moonbase-runtime/try-runtime"] moonbase-runtime-benchmarks = [ "moonbase-native", diff --git a/runtime/moonbase/src/lib.rs b/runtime/moonbase/src/lib.rs index d678b14f3f..1f68920f15 100644 --- a/runtime/moonbase/src/lib.rs +++ b/runtime/moonbase/src/lib.rs @@ -191,7 +191,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("moonbase"), impl_name: create_runtime_str!("moonbase"), authoring_version: 4, - spec_version: 2700, + spec_version: 2800, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 2, diff --git a/runtime/moonbeam/src/lib.rs b/runtime/moonbeam/src/lib.rs index 7fcaa415cf..f1197161a4 100644 --- a/runtime/moonbeam/src/lib.rs +++ b/runtime/moonbeam/src/lib.rs @@ -184,7 +184,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("moonbeam"), impl_name: create_runtime_str!("moonbeam"), authoring_version: 3, - spec_version: 2700, + spec_version: 2800, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 2, diff --git a/runtime/moonriver/src/lib.rs b/runtime/moonriver/src/lib.rs index cdb78f5367..5a9d6fecee 100644 --- a/runtime/moonriver/src/lib.rs +++ b/runtime/moonriver/src/lib.rs @@ -185,7 +185,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("moonriver"), impl_name: create_runtime_str!("moonriver"), authoring_version: 3, - spec_version: 2700, + spec_version: 2800, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 2,