Skip to content

Commit

Permalink
reverting moving deps into root Cargo file
Browse files Browse the repository at this point in the history
Fixes #140
  • Loading branch information
blasrodri committed Nov 23, 2022
1 parent 70ff347 commit de6fa84
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions contracts/pallet-ibc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ cumulus-primitives-core = { default-features = false, git = "https://github.com
# ibc
ibc-proto = { path = "../../ibc/proto", default-features = false }
tendermint = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", optional = true, default-features = false } # cannot be defined as optional in workspace
tendermint-proto = { workspace = true }
tendermint-proto = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }
ics23 = { git = "https://github.com/confio/ics23", rev = "a4daeb4c24ce1be827829c0841446abc690c4f11", default-features = false }

grandpa-client-primitives = { package = "grandpa-light-client-primitives", path = "../../algorithms/grandpa/primitives", default-features = false }
Expand Down Expand Up @@ -83,7 +83,7 @@ prost = { version = "0.11" }
serde = { version = "1.0" }
simple-iavl = { path = "simple-iavl" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }
tendermint = { workspace = true }
tendermint = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27", default-features = false }
pallet-assets = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }
pallet-ibc-ping = { path = "ping", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion contracts/pallet-ibc/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "pol
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }
tendermint-proto = { workspace = true }
tendermint-proto = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }

[dependencies.ibc]
path = "../../../ibc/modules"
Expand Down
2 changes: 1 addition & 1 deletion contracts/pallet-ibc/simple-iavl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ description = """
bytes = { version = "1.1.0", default-features = false }
ics23 = { git = "https://github.com/confio/ics23", rev = "a4daeb4c24ce1be827829c0841446abc690c4f11", default-features = false }
sha2 = { version = "0.10.2", default-features = false }
tendermint = { workspace = true }
tendermint = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }

[dev-dependencies]
proptest = "*"
Expand Down
2 changes: 1 addition & 1 deletion hyperspace/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ prometheus = { version = "0.13.0", default-features = false }
# ibc
ibc = { path = "../../ibc/modules", features = [] }
ibc-proto = { path = "../../ibc/proto" }
tendermint-proto = { workspace = true }
tendermint-proto = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }
ibc-rpc = { path = "../../contracts/pallet-ibc/rpc" }

ics11-beefy = { path = "../../light-clients/ics11-beefy" }
Expand Down
2 changes: 1 addition & 1 deletion hyperspace/metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ anyhow = "1.0.65"
# ibc
ibc = { path = "../../ibc/modules" }
ibc-proto = { path = "../../ibc/proto" }
tendermint-proto = { workspace = true }
tendermint-proto = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }
2 changes: 1 addition & 1 deletion hyperspace/near/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ sp-keystore = "0.12.0"
# ibc
ibc = { path = "../../ibc/modules", features = [] }
ibc-proto = { path = "../../ibc/proto" }
tendermint-proto = { workspace = true }
tendermint-proto = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }

# near
near-crypto = "0.14.0"
Expand Down
2 changes: 1 addition & 1 deletion hyperspace/parachain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polka
# composable
ibc = { path = "../../ibc/modules", features = [] }
ibc-proto = { path = "../../ibc/proto" }
tendermint-proto = { workspace = true }
tendermint-proto = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }
light-client-common = { path = "../../light-clients/common" }
ibc-rpc = { path = "../../contracts/pallet-ibc/rpc" }
pallet-ibc = { path = "../../contracts/pallet-ibc" }
Expand Down
2 changes: 1 addition & 1 deletion hyperspace/testsuite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ json = { version = "1.0.85", package = "serde_json" }

ibc = { path = "../../ibc/modules" }
ibc-proto = { path = "../../ibc/proto" }
tendermint-proto = { workspace = true }
tendermint-proto = { git = "https://github.com/composableFi/tendermint-rs", rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0", default-features = false }

hyperspace-core = { path = "../core", features = ["testing"] }
hyperspace-primitives = { path = "../primitives", features = ["testing"] }
Expand Down
4 changes: 3 additions & 1 deletion light-clients/ics07-tendermint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ workspace = true
workspace = true

[dependencies.tendermint-light-client-verifier]
workspace = true
git = "https://github.com/composableFi/tendermint-rs"
rev = "2c513dcaf2385d5b5f55e129a5ed11cc8d8ad5d0"
default-features = false

[dev-dependencies]
ibc = { path = "../../ibc/modules", features = ["mocks"] }
Expand Down

0 comments on commit de6fa84

Please sign in to comment.