Skip to content

Commit

Permalink
v0.34.1
Browse files Browse the repository at this point in the history
  • Loading branch information
librelois committed Nov 28, 2023
1 parent 81a83f4 commit 9c5bf9a
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 65 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions node/cli-opt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
29 changes: 13 additions & 16 deletions node/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand All @@ -23,22 +23,22 @@ 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 }

# 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 }

Expand All @@ -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"]
77 changes: 37 additions & 40 deletions node/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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]
Expand All @@ -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 }
Expand All @@ -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 = []

Expand All @@ -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",
Expand Down

0 comments on commit 9c5bf9a

Please sign in to comment.