Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

solana-ibc: update ibc dependency #128

Merged
merged 10 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ borsh = { version = "0.10.3", default-features = false }
bytemuck = { version = "1.14", default-features = false }
derive_more = "0.99.17"
hex-literal = "0.4.1"
ibc = { version = "0.47.0", default-features = false, features = ["borsh", "serde"] }
ibc-proto = { version = "0.37.1", default-features = false }
ibc = { version = "0.48.1", default-features = false, features = ["borsh", "serde"] }
ibc-testkit = { version = "0.48.1", default-features = false }
insta = { version = "1.34.0" }
pretty_assertions = "1.4.0"
primitive-types = "0.12.2"
Expand Down
6 changes: 3 additions & 3 deletions solana/solana-ibc/programs/solana-ibc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ no-entrypoint = []
no-idl = []
no-log-ix-name = []
cpi = ["no-entrypoint"]
mocks = ["ibc/mocks", "ibc/std"]
mocks = ["ibc-testkit"]

[dependencies]
anchor-lang.workspace = true
anchor-spl.workspace = true
base64.workspace = true
bytemuck.workspace = true
derive_more.workspace = true
ibc-proto.workspace = true
ibc-testkit = { workspace = true, optional = true }
ibc.workspace = true
primitive-types.workspace = true
serde.workspace = true
Expand All @@ -39,5 +39,5 @@ stdx.workspace = true
[dev-dependencies]
anchor-client.workspace = true
anyhow.workspace = true
ibc = { workspace = true, features = ["mocks"] }
ibc-testkit.workspace = true
insta.workspace = true
Loading
Loading