Skip to content

Commit

Permalink
fix wasm builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Buckram123 committed May 1, 2024
1 parent 9d82f3c commit e65c355
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions framework/packages/abstract-adapter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ abstract-testing = { workspace = true, optional = true }
cw-orch = { workspace = true }
# Keep this as a version and update when publishing new versions
abstract-interface = { path = "../../packages/abstract-interface", version = "0.21.0" }
abstract-ibc-client = { version = "0.21.0", path = "../../contracts/native/ibc-client" }
abstract-ibc-host = { version = "0.21.0", path = "../../contracts/native/ibc-host" }
abstract-ibc-client = { version = "0.21.0", path = "../../contracts/native/ibc-client", default-features = false }
abstract-ibc-host = { version = "0.21.0", path = "../../contracts/native/ibc-host", default-features = false }

[dev-dependencies]
speculoos = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion framework/packages/abstract-adapter/src/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ macro_rules! cw_orch_interface {
}

pub mod interface {
use super::{_wrapper_fns, *};
use super::*;
#[::cw_orch::interface(
_wrapper_fns::InstantiateMsg,
_wrapper_fns::ExecuteMsg,
Expand Down
2 changes: 1 addition & 1 deletion framework/packages/abstract-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ abstract-testing = { workspace = true, optional = true }
cw-orch = { workspace = true }

abstract-interface = { path = "../../packages/abstract-interface", version = "0.21.0" }
abstract-ibc-host = { version = "0.21.0", path = "../../contracts/native/ibc-host" }
abstract-ibc-host = { version = "0.21.0", path = "../../contracts/native/ibc-host", default-features = false }

[dev-dependencies]
cosmwasm-schema = { workspace = true }
Expand Down

0 comments on commit e65c355

Please sign in to comment.