From 9c5bf9a7711e86eed27068a88dbcbb1f04229115 Mon Sep 17 00:00:00 2001 From: librelois Date: Tue, 28 Nov 2023 11:38:15 +0100 Subject: [PATCH] v0.34.1 --- Cargo.lock | 6 ++-- node/cli-opt/Cargo.toml | 12 +++---- node/cli/Cargo.toml | 29 +++++++--------- node/service/Cargo.toml | 77 ++++++++++++++++++++--------------------- 4 files changed, 59 insertions(+), 65 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 500d87b71b..2299f8c180 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6472,7 +6472,7 @@ dependencies = [ [[package]] name = "moonbeam-cli" -version = "0.34.0" +version = "0.34.1" dependencies = [ "clap", "cumulus-client-cli", @@ -6507,7 +6507,7 @@ dependencies = [ [[package]] name = "moonbeam-cli-opt" -version = "0.34.0" +version = "0.34.1" dependencies = [ "account", "bip32", @@ -6985,7 +6985,7 @@ dependencies = [ [[package]] name = "moonbeam-service" -version = "0.34.0" +version = "0.34.1" dependencies = [ "ansi_term", "async-io 1.13.0", diff --git a/node/cli-opt/Cargo.toml b/node/cli-opt/Cargo.toml index 736f93c29f..283f549b87 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.34.0" +version = "0.34.1" [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 c051075ae6..896060f528 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.34.0" +version = "0.34.1" [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 f8abad497d..c5bdc7dba1 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.34.0" +version = "0.34.1" [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,33 +81,36 @@ 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 } # Frontier fc-consensus = { workspace = true } fc-db = { 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", @@ -140,7 +143,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] @@ -154,7 +157,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 } @@ -172,22 +175,16 @@ default = [ "westend-native", ] -kusama-native = [ - "polkadot-cli/kusama-native", - "polkadot-service/kusama-native", -] -rococo-native = [ - "polkadot-cli/rococo-native", - "polkadot-service/rococo-native", -] +kusama-native = ["polkadot-cli/kusama-native", "polkadot-service/kusama-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 = [] @@ -201,7 +198,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",