Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayanski committed Dec 16, 2024
1 parent 59f89e5 commit b39f050
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions integrations/astrovault-adapter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "abstract-astrovault-adapter"
version = "0.2.0"
resolver = "2"

[features]
default = ["full_integration"]
Expand Down
7 changes: 4 additions & 3 deletions interchain/modules-clone-testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
edition = { workspace = true }
name = "abstract-modules-interchain-tests"
version = { workspace = true }
edition = { workspace = true }
name = "abstract-modules-interchain-tests"
version = { workspace = true }
resolver = "2"

[lib]

Expand Down
6 changes: 3 additions & 3 deletions modules/contracts/adapters/cw-staking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ export = []
osmosis-test = ["dep:cw-orch-osmosis-test-tube"]
schema = ["abstract-adapter/schema"]
testing = ["dep:abstract-client", "dep:cw20", "abstract-adapter/test-utils"]
local = ["abstract-astrovault-adapter/local", "abstract-kujira-adapter/local","abstract-wyndex-adapter/local"]


# Supported Dexes
osmosis = ["abstract-osmosis-adapter/full_integration"]
Expand Down Expand Up @@ -105,6 +107,7 @@ cw-staking = { path = ".", package = "abstract-cw-staking", features = [
"wynd",
"osmosis",
"testing",
"local"
] }
cw20 = { workspace = true }
cw20-base = { workspace = true }
Expand All @@ -117,6 +120,3 @@ serde-cw-value = "0.7.0"
tokio = { version = "1.4", features = ["full"] }
abstract-client = {workspace = true, features = ["test-utils"]}

abstract-astrovault-adapter = { workspace = true, features = ["local"] }
abstract-kujira-adapter = { workspace = true, features = ["local"] }
abstract-wyndex-adapter = { workspace = true, features = ["local"] }
9 changes: 5 additions & 4 deletions modules/contracts/adapters/dex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ testing = [
"dep:cw20",
"dep:serde_json",
"abstract-adapter/test-utils",
]
local = [
"abstract-wyndex-adapter/local",
"abstract-astrovault-adapter/local",
"abstract-kujira-adapter/local",
Expand Down Expand Up @@ -122,9 +124,10 @@ tokio = { workspace = true }

bip32 = { version = "0.5.2" }
dex = { path = ".", features = [
# "wynd",
"wynd",
"osmosis",
"testing",
"local"
], package = "abstract-dex-adapter" }

# abstract-wyndex-adapter = { workspace = true, features = ["local"] }
Expand All @@ -133,10 +136,8 @@ cw-utils = { workspace = true }
cw20 = { workspace = true }
cw20-base = { workspace = true }

abstract-astrovault-adapter = { workspace = true, features = ["local"] }
abstract-integration-tests = { workspace = true }
abstract-kujira-adapter = { workspace = true, features = ["local"] }
abstract-wyndex-adapter = { workspace = true, features = ["local"] }

cw-orch = { workspace = true, features = ["daemon"] }
cw-orch-interchain = { workspace = true, features = ["daemon"] }
cw-plus-orch = { workspace = true }
Expand Down

0 comments on commit b39f050

Please sign in to comment.