Skip to content

Commit

Permalink
chore: sort dependencies alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
dandanlen committed Dec 11, 2024
1 parent 9af03e4 commit 8e3fcee
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ ethbloom = { version = "0.13" }
ethereum = { version = "0.14", default-features = false }
ethereum-types = { version = "0.14.1", default-features = false }
ethers = { version = "2.0.8" }
frame-metadata = { version = "16.0.0" }
fs_extra = { version = "1.3.0" }
futures = { version = "0.3.30" }
futures-core = { version = "0.3.30" }
Expand Down Expand Up @@ -178,12 +177,13 @@ pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/chainfl
frame-benchmarking = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }
frame-benchmarking-cli = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }
frame-executive = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }
frame-metadata = { version = "16.0.0", default-features = false }
frame-metadata-hash-extension = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }
frame-support = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }
frame-system = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }
frame-system-benchmarking = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }
frame-system-rpc-runtime-api = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }
frame-try-runtime = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }
frame-metadata-hash-extension = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }

# PolkadotSdk Primitives
sp-api = { git = "https://github.com/chainflip-io/polkadot-sdk.git", tag = "chainflip-substrate-1.15.2+2", default-features = false }
Expand Down
8 changes: 4 additions & 4 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ codec = { workspace = true, default-features = true, features = [
"derive",
"full",
] }
frame-metadata = { workspace = true, default-features = true, features = [
"current",
] }
frame-metadata-hash-extension = { workspace = true }
frame-support = { workspace = true, default-features = true }
frame-system = { workspace = true, default-features = true }
sc-rpc-api = { workspace = true, default-features = true }
Expand All @@ -112,11 +116,7 @@ sp-rpc = { workspace = true, default-features = true }
sp-runtime = { workspace = true, default-features = true }
sp-version = { workspace = true, default-features = true }
substrate-frame-rpc-system = { workspace = true }
frame-metadata-hash-extension = { workspace = true }

frame-metadata = { workspace = true, default-features = true, features = [
"current",
] }
serde_bytes = { workspace = true, default-features = true }
bs58 = { workspace = true, default-features = true }
base64 = { workspace = true }
Expand Down
4 changes: 3 additions & 1 deletion state-chain/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,11 @@ sp-io = { workspace = true, default-features = true }
sp-timestamp = { workspace = true, default-features = true }
sp-inherents = { workspace = true, default-features = true }
sp-keyring = { workspace = true, default-features = true }

# FRAME dependencies
frame-metadata-hash-extension = { workspace = true }
frame-system = { workspace = true, default-features = true }
pallet-transaction-payment = { workspace = true, default-features = true }
frame-metadata-hash-extension = { workspace = true }

# These dependencies are used for the node template"s RPCs
jsonrpsee = { workspace = true, features = ["full"] }
Expand Down
8 changes: 3 additions & 5 deletions state-chain/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,11 @@ pallet-session = { workspace = true, features = ["historical"] }
# Substrate dependencies
frame-benchmarking = { workspace = true, optional = true }
frame-executive = { workspace = true }
frame-metadata-hash-extension = { workspace = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
frame-system-benchmarking = { workspace = true, optional = true }
frame-try-runtime = { workspace = true, optional = true }

pallet-aura = { workspace = true }
pallet-grandpa = { workspace = true }
Expand All @@ -84,18 +86,14 @@ sp-block-builder = { workspace = true }
sp-consensus-aura = { workspace = true, features = ["serde"] }
sp-consensus-grandpa = { workspace = true, features = ["serde"] }
sp-core = { workspace = true, features = ["serde"] }
sp-genesis-builder = { workspace = true }
sp-inherents = { workspace = true }
sp-offchain = { workspace = true }
sp-runtime = { workspace = true, features = ["serde"] }
sp-session = { workspace = true }
sp-std = { workspace = true }
sp-transaction-pool = { workspace = true }
sp-version = { workspace = true }
frame-metadata-hash-extension = { workspace = true }

sp-genesis-builder = { workspace = true }

frame-try-runtime = { workspace = true, optional = true }

# Used for RPCs
frame-system-rpc-runtime-api = { workspace = true }
Expand Down

0 comments on commit 8e3fcee

Please sign in to comment.