-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump to v0.9.15 * Bump and integrate merkle-distributor * Fix integration test * Fix check failed * Fix salp unlock issue * Fix for CanonicalLocation compatibility * Bump to v0.9.25 * Remove merkle-distributor from repo * Fix per review * Bump depencencies * Fix salp xcm weight&Bump zenlink Co-authored-by: yrong <[email protected]> Co-authored-by: ubuntu <[email protected]> Co-authored-by: Edwin Wang <[email protected]>
- Loading branch information
1 parent
f1ff7a1
commit 5e191a4
Showing
47 changed files
with
1,515 additions
and
2,025 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "node-cli" | ||
version = "0.9.24" | ||
version = "0.9.25" | ||
authors = ["Liebi Technologies <[email protected]>"] | ||
description = "Bifrost Parachain Node" | ||
build = "build.rs" | ||
|
@@ -22,37 +22,37 @@ log = "0.4.8" | |
structopt = { version = "0.3.8", optional = true } | ||
|
||
# primitives | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15" } | ||
|
||
# client dependencies | ||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", optional = true } | ||
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" } | ||
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" } | ||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15", optional = true } | ||
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15" } | ||
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15" } | ||
|
||
# node-specific dependencies | ||
node-service = { path = "../service", default-features = false } | ||
node-primitives = { path = "../primitives" } | ||
|
||
# CLI-specific dependencies | ||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", optional = true } | ||
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", optional = true } | ||
frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", optional = true } | ||
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", optional = true } | ||
node-inspect = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", optional = true } | ||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15", optional = true } | ||
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15", optional = true } | ||
frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15", optional = true } | ||
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15", optional = true } | ||
node-inspect = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15", optional = true } | ||
|
||
# Cumulus dependencies | ||
cumulus-client-cli = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" } | ||
cumulus-client-service = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" } | ||
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" } | ||
cumulus-client-cli = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.15" } | ||
cumulus-client-service = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.15" } | ||
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.15" } | ||
|
||
# Polkadot dependencies | ||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" } | ||
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" } | ||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" } | ||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.15" } | ||
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.15" } | ||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.15" } | ||
|
||
[build-dependencies] | ||
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", optional = true } | ||
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.15", optional = true } | ||
|
||
[features] | ||
default = ["wasmtime", "cli"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.