Skip to content

Commit

Permalink
fix: unify rkyv dep at workspace level
Browse files Browse the repository at this point in the history
  • Loading branch information
eloylp committed Sep 11, 2024
1 parent 4705b29 commit a8096e7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 24 deletions.
23 changes: 4 additions & 19 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ serde_json = "1.0.89"
schemars = "0.8.10"
sha3 = { version = "0.10.8", default-features = false, features = [] }
signature-verifier-api = { version = "^1.0.0", path = "packages/signature-verifier-api" }
axelar-rkyv-encoding = { git = "https://git@github.com/eigerco/solana-axelar.git", branch = "main" }
axelar-rkyv-encoding = { git = "https://github.com/eigerco/solana-axelar.git", branch = "main" }
syn = "2.0.68"
ethers-contract = { version = "2.0.14", default-features = false, features = ["abigen"] }
ethers-core = "2.0.14"
Expand Down
14 changes: 10 additions & 4 deletions ampd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ enum-display-derive = "0.1.1"
error-stack = { workspace = true }
ethers-contract = { workspace = true }
ethers-core = { workspace = true }
ethers-providers = { version = "2.0.13", default-features = false, features = ["rustls"] }
ethers-providers = { version = "2.0.13", default-features = false, features = [
"rustls",
] }
events = { workspace = true }
events-derive = { workspace = true }
evm-gateway = { workspace = true }
Expand Down Expand Up @@ -60,12 +62,16 @@ solana-transaction-status = "2.0.1"
sha3 = { workspace = true }
sui-gateway = { workspace = true }
sui-json-rpc-types = { git = "https://github.com/mystenlabs/sui", tag = "mainnet-v1.26.2" }
sui-types = { git = "https://github.com/mystenlabs/sui", features = ["test-utils"], tag = "mainnet-v1.26.2" }
sui-types = { git = "https://github.com/mystenlabs/sui", features = [
"test-utils",
], tag = "mainnet-v1.26.2" }
# Need to switch to our own fork of tendermint and tendermint-rpc due to event attribute value being nullable.
# 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 = { workspace = true }
tokio = { workspace = true, features = ["signal"] }
tokio-stream = { workspace = true, features = ["sync"] }
Expand All @@ -92,7 +98,7 @@ multisig = { workspace = true, features = ["test", "library"] }
rand = "0.8.5"
random-string = "1.0.0"
tokio = { workspace = true, features = ["test-util"] }
axelar-rkyv-encoding = { git = "https://github.com/eigerco/solana-axelar.git", branch = "main" }
axelar-rkyv-encoding = { workspace = true }

[build-dependencies]
tonic-build = "0.8.3"
Expand Down

0 comments on commit a8096e7

Please sign in to comment.