Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Commit

Permalink
Update to latest tendermint-rs, and unpin time dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
james-chf committed Nov 29, 2022
1 parent 5396e2b commit 530ebdf
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 33 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions ci/no-std-check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ resolver = "2"
[dependencies]
ibc = { path = "../../modules", default-features = false }
ibc-proto = { path = "../../proto", default-features = false }
tendermint = {git = "https://github.com/heliaxdev/tendermint-rs", rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c", default-features = false }
tendermint-proto = {git = "https://github.com/heliaxdev/tendermint-rs", rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c", default-features = false }
tendermint-light-client-verifier = {git = "https://github.com/heliaxdev/tendermint-rs", rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c", default-features = false }
tendermint = {git = "https://github.com/heliaxdev/tendermint-rs", rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab", default-features = false }
tendermint-proto = {git = "https://github.com/heliaxdev/tendermint-rs", rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab", default-features = false }
tendermint-light-client-verifier = {git = "https://github.com/heliaxdev/tendermint-rs", rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab", default-features = false }

sp-core = { version = "5.0.0", default-features = false, optional = true }
sp-io = { version = "5.0.0", default-features = false, optional = true }
Expand Down
14 changes: 7 additions & 7 deletions modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mocks = ["tendermint-testgen", "clock", "std"]
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
ibc-proto = { version = "0.17.1", path = "../proto", default-features = false }
ics23 = { version = "0.7.0", default-features = false }
time = { version = "=0.3.11", default-features = false }
time = { version = "0.3", default-features = false }
serde_derive = { version = "1.0.104", default-features = false }
serde = { version = "1.0", default-features = false }
serde_json = { version = "1", default-features = false }
Expand All @@ -46,22 +46,22 @@ derive_more = { version = "0.99.17", default-features = false, features = ["from

[dependencies.tendermint]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
default-features = false

[dependencies.tendermint-proto]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
default-features = false

[dependencies.tendermint-light-client-verifier]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
default-features = false

[dependencies.tendermint-testgen]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
optional = true
default-features = false

Expand All @@ -71,8 +71,8 @@ tracing-subscriber = { version = "0.3.11", features = ["fmt", "env-filter", "jso
test-log = { version = "0.2.10", features = ["trace"] }
modelator = "0.4.2"
sha2 = { version = "0.10.2" }
tendermint-rpc = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c", features = ["http-client", "websocket-client"] }
tendermint-testgen = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c" } # Needed for generating (synthetic) light blocks.
tendermint-rpc = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab", features = ["http-client", "websocket-client"] }
tendermint-testgen = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab" } # Needed for generating (synthetic) light blocks.

[[test]]
name = "mbt"
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ base64 = { version = "0.13", default-features = false, features = ["alloc"]

[dependencies.tendermint-proto]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
default-features = false

[features]
Expand Down
10 changes: 5 additions & 5 deletions relayer-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,26 +61,26 @@ console = "0.15.0"

[dependencies.tendermint-proto]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"

[dependencies.tendermint]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
features = ["secp256k1"]

[dependencies.tendermint-rpc]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
features = ["http-client", "websocket-client"]

[dependencies.tendermint-light-client]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
features = ["unstable"]

[dependencies.tendermint-light-client-verifier]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"

[dependencies.abscissa_core]
version = "=0.6.0"
Expand Down
12 changes: 6 additions & 6 deletions relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,28 +74,28 @@ features = ["num-bigint", "serde"]

[dependencies.tendermint]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
features = ["secp256k1"]

[dependencies.tendermint-rpc]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
features = ["http-client", "websocket-client"]

[dependencies.tendermint-light-client]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
default-features = false
features = ["rpc-client", "secp256k1", "unstable"]

[dependencies.tendermint-light-client-verifier]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"
default-features = false

[dependencies.tendermint-proto]
git = "https://github.com/heliaxdev/tendermint-rs"
rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c"
rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab"

[dev-dependencies]
ibc = { version = "0.14.0", path = "../modules", features = ["mocks"] }
Expand All @@ -105,4 +105,4 @@ tracing-subscriber = { version = "0.3.11", features = ["fmt", "env-filter", "jso
test-log = { version = "0.2.10", features = ["trace"] }

# Needed for generating (synthetic) light blocks.
tendermint-testgen = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c" }
tendermint-testgen = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab" }
4 changes: 2 additions & 2 deletions tools/integration-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ ibc-relayer = { path = "../../relayer" }
ibc-relayer-cli = { path = "../../relayer-cli" }
ibc-proto = { path = "../../proto" }
ibc-test-framework = { path = "../test-framework" }
tendermint = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c" }
tendermint-rpc = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c", features = ["http-client", "websocket-client"] }
tendermint = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab" }
tendermint-rpc = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab", features = ["http-client", "websocket-client"] }

serde_json = "1"
time = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions tools/test-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ ibc = { path = "../../modules" }
ibc-relayer = { path = "../../relayer" }
ibc-relayer-cli = { path = "../../relayer-cli" }
ibc-proto = { path = "../../proto" }
tendermint = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c" }
tendermint-rpc = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "9694eaa42799eec2af2af06a15c7cd779f48fb9c", features = ["http-client", "websocket-client"] }
tendermint = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab" }
tendermint-rpc = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "f8f019217130f36eecafac2ad11e35f5bda2ecab", features = ["http-client", "websocket-client"] }

tokio = { version = "1.0", features = ["full"] }
tracing = "0.1.34"
Expand Down

0 comments on commit 530ebdf

Please sign in to comment.