Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshOrndorff committed Dec 13, 2023
1 parent 8b5f1d4 commit 2da367b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

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

13 changes: 6 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ resolver = "2"
async-io = "2.0"
async-trait = "0.1.73"
clap = "4.3.0"
color-print = "0.3.4"
hex-literal = "0.4.1"
jsonrpsee = "0.16.2"
log = "0.4"
Expand Down Expand Up @@ -100,16 +101,10 @@ sp-storage = { branch = "tuxedo-no-rocks", default_features = false, git = "http
sp-timestamp = { branch = "tuxedo-no-rocks", default_features = false, git = "https://github.com/off-narrative-labs/polkadot-sdk" }
sp-transaction-pool = { branch = "tuxedo-no-rocks", default_features = false, git = "https://github.com/off-narrative-labs/polkadot-sdk" }
sp-version = { branch = "tuxedo-no-rocks", default_features = false, git = "https://github.com/off-narrative-labs/polkadot-sdk" }

# x
substrate-prometheus-endpoint = { branch = "tuxedo-no-rocks", git = "https://github.com/off-narrative-labs/polkadot-sdk" }

# Polkadot
color-print = "0.3.4"
# xcm = { package = "staging-xcm", path = "../../../polkadot/xcm", default-features = false}

# Cumulus
cumulus-client-cli = { branch = "tuxedo-no-rocks", git = "https://github.com/off-narrative-labs/polkadot-sdk", default_features = false }
cumulus-client-cli = { branch = "tuxedo-no-rocks", default_features = false, git = "https://github.com/off-narrative-labs/polkadot-sdk" }
cumulus-client-collator = { branch = "tuxedo-no-rocks", git = "https://github.com/off-narrative-labs/polkadot-sdk" }
cumulus-client-consensus-aura = { branch = "tuxedo-no-rocks", git = "https://github.com/off-narrative-labs/polkadot-sdk" }
cumulus-client-consensus-common = { branch = "tuxedo-no-rocks", git = "https://github.com/off-narrative-labs/polkadot-sdk" }
Expand All @@ -130,3 +125,7 @@ sp-state-machine = { branch = "tuxedo-no-rocks", default_features = false, git =
sp-tracing = { branch = "tuxedo-no-rocks", default_features = false, git = "https://github.com/off-narrative-labs/polkadot-sdk" }
sp-trie = { branch = "tuxedo-no-rocks", default_features = false, git = "https://github.com/off-narrative-labs/polkadot-sdk" }
trie-db = { version = "0.28.0", default-features = false }

# We need to depend on this explicitly so we can enable the "full-node" feature
# See https://github.com/paritytech/polkadot-sdk/issues/2551 for more details
polkadot-service = { features = [ "full-node" ], branch = "tuxedo-no-rocks", default_features = false, git = "https://github.com/off-narrative-labs/polkadot-sdk" }
10 changes: 6 additions & 4 deletions parachain-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ version = "0.1.0"
[dependencies]
async-io = { workspace = true }
clap = { features = [ "derive" ], workspace = true }
color-print = { workspace = true }
futures = { workspace = true }
jsonrpsee = { features = [ "server" ], workspace = true }
log = { workspace = true }
Expand Down Expand Up @@ -49,10 +50,7 @@ sp-runtime = { workspace = true }
sp-timestamp = { workspace = true }
substrate-prometheus-endpoint = { workspace = true }

# Polkadot
color-print = { workspace = true }

# Cumulus
# Cumulus / Polkadot
cumulus-client-cli = { default-features = false, workspace = true }
cumulus-client-collator = { workspace = true }
cumulus-client-consensus-aura = { workspace = true }
Expand All @@ -65,6 +63,10 @@ cumulus-relay-chain-interface = { workspace = true }
polkadot-cli = { features = [ "rococo-native" ], default-features = false, workspace = true }
polkadot-primitives = { workspace = true }

# We need to depend on this explicitly so we can enable the "full-node" feature
# See https://github.com/paritytech/polkadot-sdk/issues/2551 for more details
polkadot-service = { workspace = true }

[build-dependencies]
substrate-build-script-utils = { workspace = true }

Expand Down

0 comments on commit 2da367b

Please sign in to comment.