Skip to content

Commit

Permalink
Specify git dependencies on tendermint-rs instead of local
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Sep 25, 2020
1 parent 23c3b3f commit 4fecf88
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 10 deletions.
14 changes: 11 additions & 3 deletions modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ description = """
"""

[dependencies]
tendermint = { version = "0.16.0", path = "../../tendermint-rs/tendermint" }
tendermint-rpc = { version = "0.16.0", features = ["http-client", "websocket-client"], path = "../../tendermint-rs/rpc" }
tendermint-proto = "0.1.0"

# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
Expand All @@ -31,10 +29,20 @@ serde_json = "1"
tracing = "0.1.13"
prost = "0.6.1"
prost-types = { version = "0.6.1" }

bytes = "0.5.5"
dyn-clonable = "0.9.0"

[dependencies.tendermint]
version = "0.16.0"
git = "https://github.com/informalsystems/tendermint-rs"
branch = "romac/light-client-ibc"

[dependencies.tendermint-rpc]
version = "0.16.0"
features = ["http-client", "websocket-client"]
git = "https://github.com/informalsystems/tendermint-rs"
branch = "romac/light-client-ibc"

[dev-dependencies]
tokio = { version = "0.2", features = ["macros"] }
subtle-encoding = { version = "0.5" }
20 changes: 16 additions & 4 deletions relayer-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ authors = [
[dependencies]
relayer = { path = "../relayer" }
ibc = { path = "../modules" }

tendermint = { version = "0.16.0", path = "../../tendermint-rs/tendermint" }
tendermint-rpc = { version = "0.16.0", path = "../../tendermint-rs/rpc" }
tendermint-light-client = { version = "0.16.0", path = "../../tendermint-rs/light-client" }
tendermint-proto = "0.1.0"

abscissa_tokio = "0.5.1"
Expand All @@ -28,6 +24,22 @@ toml = "0.5.6"
serde_derive = "1.0.116"
sled = "0.34.4"

[dependencies.tendermint]
version = "0.16.0"
git = "https://github.com/informalsystems/tendermint-rs"
branch = "romac/light-client-ibc"

[dependencies.tendermint-rpc]
version = "0.16.0"
features = ["http-client", "websocket-client"]
git = "https://github.com/informalsystems/tendermint-rs"
branch = "romac/light-client-ibc"

[dependencies.tendermint-light-client]
version = "0.16.0"
git = "https://github.com/informalsystems/tendermint-rs"
branch = "romac/light-client-ibc"

[dependencies.abscissa_core]
version = "0.5.2"
# optional: use `gimli` to capture backtraces
Expand Down
19 changes: 16 additions & 3 deletions relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ authors = [

[dependencies]
ibc = { path = "../modules" }
tendermint = { version = "0.16.0", path = "../../tendermint-rs/tendermint" }
tendermint-rpc = { version = "0.16.0", features = ["http-client", "websocket-client"], path = "../../tendermint-rs/rpc" }
tendermint-light-client = { version = "0.16.0", path = "../../tendermint-rs/light-client" }
tendermint-proto = "0.1.0"

anomaly = "0.2.0"
Expand All @@ -29,4 +26,20 @@ bytes = "0.5.6"
prost = "0.6.1"
futures = "0.3.5"

[dependencies.tendermint]
version = "0.16.0"
git = "https://github.com/informalsystems/tendermint-rs"
branch = "romac/light-client-ibc"

[dependencies.tendermint-rpc]
version = "0.16.0"
features = ["http-client", "websocket-client"]
git = "https://github.com/informalsystems/tendermint-rs"
branch = "romac/light-client-ibc"

[dependencies.tendermint-light-client]
version = "0.16.0"
git = "https://github.com/informalsystems/tendermint-rs"
branch = "romac/light-client-ibc"

[dev-dependencies]

0 comments on commit 4fecf88

Please sign in to comment.