Skip to content

Commit

Permalink
add itertools as a workspace dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
fish-sammy committed Sep 1, 2023
1 parent 2a76e17 commit 2db498a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 24 deletions.
24 changes: 7 additions & 17 deletions Cargo.lock

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

8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
[workspace]
members = [
"ampd",
"contracts/*",
"packages/*"
]
members = ["ampd", "contracts/*", "packages/*"]

[workspace.dependencies]
connection-router = { version = "^0.1.0", path = "contracts/connection-router" }
Expand All @@ -17,6 +13,8 @@ service-registry = { version = "^0.1.0", path = "contracts/service-registry" }
aggregate-verifier = { version = "^0.1.0", path = "contracts/aggregate-verifier" }
gateway = { version = "^0.1.0", path = "contracts/gateway" }
report = { version = "^0.1.0", path = "packages/report" }
itertools = "0.11.0"


[profile.release]
opt-level = 3
Expand Down
5 changes: 3 additions & 2 deletions ampd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ events-derive = { workspace = true }
futures = "0.3.25"
hex = { version = "0.4.3", features = ["serde"] }
humantime-serde = "1.1.1"
itertools = "0.11.0"
k256 = { version = "0.13.1", features = ["ecdsa"] }
mockall = "0.11.3"
multisig = { workspace = true }
Expand All @@ -38,7 +37,9 @@ serde_with = "3.2.0"
# Can switch back once https://github.com/informalsystems/tendermint-rs/issues/1216 is resolved.
# The fix for the issue is at https://github.com/axelarnetwork/tendermint-rs/commit/e97033e20e660a7e707ea86db174ec047bbba50d.
tendermint = { git = "https://github.com/axelarnetwork/tendermint-rs.git", branch = "v0.33.x" }
tendermint-rpc = { git = "https://github.com/axelarnetwork/tendermint-rs.git", branch = "v0.33.x", features = ["http-client"] }
tendermint-rpc = { git = "https://github.com/axelarnetwork/tendermint-rs.git", branch = "v0.33.x", features = [
"http-client",
] }
thiserror = "1.0.37"
tokio = { version = "1.22.0", features = ["signal"] }
tokio-stream = { version = "0.1.11", features = ["sync"] }
Expand Down

0 comments on commit 2db498a

Please sign in to comment.