Skip to content

Commit

Permalink
chore: bump cw-dex deps
Browse files Browse the repository at this point in the history
  • Loading branch information
apollo-sturdy committed Aug 22, 2024
1 parent 36b5924 commit 2e65c2a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 17 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Apollo Devs <[email protected]>"]
edition = "2021"
name = "cw-dex-router"
version = "0.4.1-rc.1"
version = "0.4.1-rc.2"
readme = "README.md"
repository = "https://github.com/apollodao/cw-dex-router"
homepage = "https://apollo.farm"
Expand Down Expand Up @@ -51,14 +51,14 @@ cosmwasm-std = "1.5.4"
cosmwasm-schema = "1.2.1"
apollo-cw-asset = "0.1.0"
cw-controllers = "1.0.1"
cw-dex = "0.5.3"
cw-dex = "0.5.4-rc.1"
cw-storage-plus = "1.0.1"
cw2 = "1.0.1"
cw20 = "1.0.1"
thiserror = "1.0.38"
apollo-utils = "0.1.0"
cw-dex-osmosis = { version = "0.1.0", optional = true }
cw-dex-astroport = { version = "0.2.0-rc.1", optional = true}
cw-dex-osmosis = { version = "0.1.1-rc.1", optional = true }
cw-dex-astroport = { version = "0.2.0-rc.3", optional = true}

[dev-dependencies]
cw-it = { version = "0.3.1", features = ["osmosis-test-tube"] }
Expand Down
4 changes: 3 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ vulnerability = "deny"
unmaintained = "deny"
notice = "deny"
unsound = "deny"
ignore = []
ignore = [
"RUSTSEC-2024-0344" # Confirmed as not applicable to CosmWasm: https://github.com/CosmWasm/cosmwasm/issues/2175#issuecomment-2180960022
]

[bans]
multiple-versions = "allow"
Expand Down
4 changes: 2 additions & 2 deletions src/operations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ mod unit_tests {
lp_token: AssetInfo::cw20(Addr::unchecked("lp_token_addr")),
pool_assets: vec![],
pair_type: cw_dex_astroport::astroport::factory::PairType::Xyk {},
liquidity_manager: Addr::unchecked("liquidity_manager"),
liquidity_manager: Some(Addr::unchecked("liquidity_manager")),
});
let cw_dex_pool_binary = to_json_vec(&cw_dex_pool).unwrap();

Expand All @@ -311,7 +311,7 @@ mod unit_tests {
lp_token: AssetInfo::cw20(Addr::unchecked("lp_token_addr")),
pool_assets: vec![],
pair_type: cw_dex_astroport::astroport::factory::PairType::Xyk {},
liquidity_manager: Addr::unchecked("liquidity_manager"),
liquidity_manager: Some(Addr::unchecked("liquidity_manager")),
});
let pool_binary = to_json_vec(&pool).unwrap();

Expand Down

0 comments on commit 2e65c2a

Please sign in to comment.