-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: unify dependencies to root cargo.toml (#5333)
* WIP: unified some dependencies to the root cargo.toml * Unified the rest of of dependencies into the root cargo.toml * Reverted unintended change. * Updated out dependencies to the (or later than the) versions used by PolkadotSdk Updated * Centralized pokadotSdk dependencies and our own packages into the root cargo.toml Updated some crates to later versions for compatibility. * Ordered everything in the root Cargo.toml alphabetically (within sections) Formatted all the cargo.toml * Added default-features = true for all crates that isn't no-std. Refactored all single quote into double quote in cargo.tomls * Fixed release build * Fixed storage key decoding for Engine. This will fix bouncer/engine startups
- Loading branch information
Showing
149 changed files
with
3,366 additions
and
3,496 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
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,30 +1,30 @@ | ||
[package] | ||
authors = ["Chainflip team <https://github.com/chainflip-io>"] | ||
edition = '2021' | ||
build = 'build.rs' | ||
edition = "2021" | ||
build = "build.rs" | ||
name = "chainflip-cli" | ||
version = "1.7.0" | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies] | ||
anyhow = "1.0" | ||
bigdecimal = "0.4.5" | ||
clap = { version = "4.5.3", features = ["derive", "env"] } | ||
config = "0.13.1" | ||
futures = "0.3.30" | ||
hex = { version = "0.4.3", features = ["serde"] } | ||
serde = { version = "1.0.197", features = ["derive", "rc"] } | ||
tokio = { version = "1.13.1", features = ["full"] } | ||
serde_json = "1.0" | ||
anyhow = { workspace = true } | ||
bigdecimal = { workspace = true } | ||
clap = { workspace = true, features = ["derive", "env"] } | ||
config = { workspace = true } | ||
futures = { workspace = true } | ||
hex = { workspace = true, default-features = true, features = ["serde"] } | ||
serde = { workspace = true, default-features = true, features = ["derive", "rc"] } | ||
tokio = { workspace = true, features = ["full"] } | ||
serde_json = { workspace = true } | ||
|
||
# Local Deps | ||
chainflip-engine = { path = "../../../engine/" } | ||
chainflip-api = { path = "../../lib" } | ||
cf-chains = { path = "../../../state-chain/chains" } | ||
utilities = { path = "../../../utilities" } | ||
custom-rpc = { path = "../../../state-chain/custom-rpc" } | ||
chainflip-engine = { workspace = true } | ||
chainflip-api = { workspace = true } | ||
cf-chains = { workspace = true, default-features = true } | ||
cf-utilities = { workspace = true, default-features = true } | ||
custom-rpc = { workspace = true } | ||
|
||
[build-dependencies] | ||
substrate-build-script-utils = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = 'chainflip-substrate-1.15.2+2' } | ||
substrate-build-script-utils = { workspace = true } |
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
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
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.