From 5cba06db4970f9e701f3b1fa705147ee5a7604b0 Mon Sep 17 00:00:00 2001 From: Farhad Shabani Date: Mon, 27 Nov 2023 14:23:47 -0800 Subject: [PATCH] chore: move away from ibc-proto --- Cargo.lock | 1 - mocks/Cargo.toml | 1 - mocks/src/cosmos/helpers/convert.rs | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 367c356f..d79a9220 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3380,7 +3380,6 @@ dependencies = [ "ibc-client-tendermint", "ibc-core", "ibc-core-host-cosmos", - "ibc-proto", "ibc-testkit", "prost 0.12.1", "serde_json", diff --git a/mocks/Cargo.toml b/mocks/Cargo.toml index 12719095..5b31342d 100644 --- a/mocks/Cargo.toml +++ b/mocks/Cargo.toml @@ -27,7 +27,6 @@ ibc-core = { workspace = true } ibc-app-transfer = { workspace = true } ibc-client-tendermint = { workspace = true } ibc-core-host-cosmos = { workspace = true } -ibc-proto = { version = "0.38.0", default-features = false, features = ["borsh"] } # cosmos dependencies basecoin-app = { git = "https://github.com/informalsystems/basecoin-rs.git", rev = "d1cd0d7" } diff --git a/mocks/src/cosmos/helpers/convert.rs b/mocks/src/cosmos/helpers/convert.rs index a8547758..b5e3596f 100644 --- a/mocks/src/cosmos/helpers/convert.rs +++ b/mocks/src/cosmos/helpers/convert.rs @@ -1,6 +1,6 @@ use ibc_core::commitment_types::merkle::MerkleProof; +use ibc_core::commitment_types::proto::ics23::CommitmentProof; use ibc_core::commitment_types::proto::v1::MerkleProof as RawMerkleProof; -use ibc_proto::ics23::CommitmentProof; use tendermint::merkle::proof::ProofOps; pub fn convert_tm_to_ics_merkle_proof(tm_proof: &ProofOps) -> MerkleProof {