Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions crates/ibc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ mocks-no-std = ["cfg-if"]

[dependencies]
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
ibc-proto = { git = "https://github.com/heliaxdev/ibc-proto-rs", rev = "acc378e5e1865fbf559fa4e36e3c2b0dc1da51bb", default-features = false }
ibc-proto = { git = "https://github.com/heliaxdev/ibc-proto-rs", rev = "6f4038fcf4981f1ed70771d1cd89931267f917af", default-features = false }
ics23 = { version = "0.9.0", default-features = false, features = ["host-functions"] }
time = { version = ">=0.3.0, <0.3.21", default-features = false }
serde_derive = { version = "1.0.104", default-features = false, optional = true }
Expand Down Expand Up @@ -81,22 +81,22 @@ cfg-if = { version = "1.0.0", optional = true }

[dependencies.tendermint]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "a2cd889ae706854e7bf476880a37408d75b4a8e1"
rev = "02b256829e80f8cfecf3fa0d625c2a76c79cd043"
default-features = false

[dependencies.tendermint-proto]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "a2cd889ae706854e7bf476880a37408d75b4a8e1"
rev = "02b256829e80f8cfecf3fa0d625c2a76c79cd043"
default-features = false

[dependencies.tendermint-light-client-verifier]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "a2cd889ae706854e7bf476880a37408d75b4a8e1"
rev = "02b256829e80f8cfecf3fa0d625c2a76c79cd043"
default-features = false

[dependencies.tendermint-testgen]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "a2cd889ae706854e7bf476880a37408d75b4a8e1"
rev = "02b256829e80f8cfecf3fa0d625c2a76c79cd043"
optional = true
default-features = false

Expand All @@ -105,7 +105,7 @@ env_logger = "0.10.0"
rstest = "0.16.0"
tracing-subscriber = { version = "0.3.14", features = ["fmt", "env-filter", "json"]}
test-log = { version = "0.2.10", features = ["trace"] }
tendermint-rpc = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "a2cd889ae706854e7bf476880a37408d75b4a8e1", features = ["http-client", "websocket-client"] }
tendermint-testgen = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "a2cd889ae706854e7bf476880a37408d75b4a8e1" } # Needed for generating (synthetic) light blocks.
tendermint-rpc = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "02b256829e80f8cfecf3fa0d625c2a76c79cd043", features = ["http-client", "websocket-client"] }
tendermint-testgen = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "02b256829e80f8cfecf3fa0d625c2a76c79cd043" } # Needed for generating (synthetic) light blocks.
parking_lot = { version = "0.12.1" }
cfg-if = { version = "1.0.0" }