Skip to content

Commit

Permalink
taplo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lemunozm committed Nov 29, 2023
1 parent 87d0539 commit 22ddc05
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -222,15 +222,14 @@ pallet-evm-precompile-modexp = { git = "https://github.com/moonbeam-foundation/f
pallet-evm-precompile-sha3fips = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43" }
pallet-evm-precompile-simple = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43" }
fc-consensus = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43" }
fc-db = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43", features = ["rocksdb"]}
fc-db = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43", features = ["rocksdb"] }
fc-mapping-sync = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43" }
fc-rpc = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43" }
fc-rpc-core = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43" }
fp-consensus = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43" }
fp-evm = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43" }
fp-storage = { git = "https://github.com/moonbeam-foundation/frontier", default-features = false, branch = "moonbeam-polkadot-v0.9.43" }


# Moonbeam
moonbeam-relay-encoder = { git = "https://github.com/moonbeam-foundation/moonbeam", default-features = false, rev = "96ac7576f93bb6828415bf3edeef9e8c4b5b4adf" }
xcm-primitives = { git = "https://github.com/moonbeam-foundation/moonbeam", default-features = false, rev = "96ac7576f93bb6828415bf3edeef9e8c4b5b4adf" }
Expand Down
16 changes: 8 additions & 8 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ serde = { workspace = true, default-features = true }
url = { workspace = true, default-features = true }

# client dependencies
sc-consensus-grandpa = { workspace = true, default-features = true }
pallet-transaction-payment-rpc = { workspace = true, default-features = true }
sc-basic-authorship = { workspace = true, default-features = true }
sc-chain-spec = { workspace = true, default-features = true }
sc-cli = { workspace = true, default-features = true, features = ["rocksdb"] }
sc-client-api = { workspace = true, default-features = true }
sc-consensus = { workspace = true, default-features = true }
sc-consensus-grandpa = { workspace = true, default-features = true }
sc-executor = { workspace = true, default-features = true }
sc-network = { workspace = true, default-features = true }
sc-network-sync = { workspace = true, default-features = true }
Expand All @@ -64,9 +65,8 @@ sp-runtime = { workspace = true, default-features = true }
sp-session = { workspace = true, default-features = true }
sp-timestamp = { workspace = true, default-features = true }
sp-transaction-pool = { workspace = true, default-features = true }
substrate-prometheus-endpoint = { workspace = true, default-features = true }
substrate-frame-rpc-system = { workspace = true, default-features = true }
pallet-transaction-payment-rpc = { workspace = true, default-features = true }
substrate-prometheus-endpoint = { workspace = true, default-features = true }

# Cli specific
frame-benchmarking-cli = { workspace = true, default-features = true, features = ["rocksdb"] }
Expand All @@ -91,14 +91,14 @@ polkadot-service = { workspace = true, default-features = true }
xcm = { workspace = true, default-features = true }

# Local
cfg-types = { workspace = true, default-features = true }
altair-runtime = { workspace = true, default-features = true }
centrifuge-runtime = { workspace = true, default-features = true }
cfg-primitives = { workspace = true, default-features = true }
cfg-types = { workspace = true, default-features = true }
cfg-utils = { workspace = true, default-features = true }
development-runtime = { workspace = true, default-features = true }
pallet-anchors = { workspace = true, default-features = true }
pallet-pool-system = { workspace = true, default-features = true }
development-runtime = { workspace = true, default-features = true }
altair-runtime = { workspace = true, default-features = true}
centrifuge-runtime = { workspace = true, default-features = true }
runtime-common = { workspace = true, default-features = true }

# benchmarking
Expand All @@ -107,7 +107,7 @@ frame-system-benchmarking = { workspace = true, default-features = true, optiona

# frontier
fc-consensus = { workspace = true, default-features = true }
fc-db = { workspace = true, default-features = true, features = ["rocksdb"]}
fc-db = { workspace = true, default-features = true, features = ["rocksdb"] }
fc-mapping-sync = { workspace = true, default-features = true }
fc-rpc = { workspace = true, default-features = true }
fc-rpc-core = { workspace = true, default-features = true }
Expand Down
1 change: 0 additions & 1 deletion runtime/centrifuge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -450,4 +450,3 @@ on-chain-release-build = [

# Set timing constants (e.g. session period) to faster versions to speed up testing.
fast-runtime = []

0 comments on commit 22ddc05

Please sign in to comment.