-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase range-middleware version to v0.3.1 (#860)
- Loading branch information
Showing
8 changed files
with
55 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
authors = ["Nikita (rizz) <[email protected]>"] | ||
edition = "2021" | ||
name = "range-middleware" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
@@ -11,9 +11,7 @@ crate-type = ["cdylib", "rlib"] | |
name = "schema" | ||
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
|
||
[dependencies] | ||
|
@@ -26,7 +24,4 @@ serde = { workspace = true } | |
thiserror = { workspace = true } | ||
dex-router-osmosis = { workspace = true } | ||
cl-vault = {path = "../cl-vault", features = ["library"]} | ||
osmosis-std = "0.25.0" | ||
|
||
[dev-dependencies] | ||
cw-multi-test = { workspace = true } | ||
osmosis-std = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
smart-contracts/osmosis/contracts/range-middleware/src/error.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 0 additions & 27 deletions
27
smart-contracts/osmosis/contracts/range-middleware/src/helpers.rs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
pub mod admin; | ||
pub mod contract; | ||
mod error; | ||
pub mod helpers; | ||
pub mod msg; | ||
pub mod range; | ||
pub mod state; | ||
|