-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump dependencies * error handling; use cw-utils * global config * update schema and typescript types * fix migrate entry point function signature * bump rust-optimizer to latest * Refactor migration. Add tests. --------- Co-authored-by: piobab <[email protected]>
- Loading branch information
Showing
22 changed files
with
553 additions
and
347 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
|
@@ -2,20 +2,21 @@ | |
members = ["contracts/*"] | ||
|
||
[workspace.package] | ||
version = "1.2.0" | ||
version = "1.3.0" | ||
authors = ["Larry Engineer <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.65" | ||
rust-version = "1.69" | ||
license = "GPL-3.0-or-later" | ||
homepage = "https://marsprotocol.io" | ||
repository = "https://github.com/mars-protocol/periphery" | ||
documentation = "https://github.com/mars-protocol/periphery#readme" | ||
|
||
[workspace.dependencies] | ||
cosmwasm-schema = "1.1" | ||
cosmwasm-std = "1.1" | ||
cw2 = "1.0" | ||
cw-storage-plus = "1.0" | ||
cosmwasm-schema = "1.3" | ||
cosmwasm-std = "1.3" | ||
cw2 = "1.1" | ||
cw-storage-plus = "1.1" | ||
cw-utils = "1.0" | ||
serde = "1.0" | ||
thiserror = "1.0" | ||
|
||
|
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
Oops, something went wrong.