Skip to content

Commit 6edeef4

Browse files
committed
ref: update dependencies
1 parent 0a18fa1 commit 6edeef4

File tree

52 files changed

+1202
-571
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1202
-571
lines changed

Cargo.lock

+1,138-467
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+14-14
Original file line numberDiff line numberDiff line change
@@ -48,24 +48,24 @@ andromeda-testing = { path = "./packages/andromeda-testing", version = "1.0.0" }
4848
andromeda-testing-e2e = { path = "./packages/andromeda-testing-e2e", version = "1.0.0" }
4949

5050
strum_macros = "0.24.3"
51-
cosmwasm-std = "1.5.10"
52-
cw-utils = "1.0.3"
53-
cw-storage-plus = "1.2.0"
54-
cw2 = "1.1.2"
55-
cw20 = "1.1.2"
56-
cw20-base = "1.1.2"
57-
cw3 = "1.1.2"
58-
cw4 = "1.1.2"
59-
cw721 = "0.18.0"
60-
cw721-base = { version = "0.18.0", features = ["library"] }
61-
cw-asset = "=3.0.0"
62-
cosmwasm-schema = "1.5.10"
51+
cosmwasm-std = "2.2.2"
52+
cw-utils = "2.0.0"
53+
cw-storage-plus = "2.0.0"
54+
cw2 = "2.0.0"
55+
cw20 = "2.0.0"
56+
cw20-base = "2.0.0"
57+
cw3 = "2.0.0"
58+
cw4 = "2.0.0"
59+
cw721 = { git = "https://github.com/public-awesome/cw-nfts.git" }
60+
cw721-base = { git = "https://github.com/public-awesome/cw-nfts.git" }
61+
cw-asset = "4.0.0"
62+
cosmwasm-schema = "2.2.2"
6363
semver = "1.0.25"
6464
enum-repr = "0.2.6"
65-
cw-multi-test = { version = "1.0.0", features = ["cosmwasm_1_2"] }
65+
cw-multi-test = "2.3.2"
6666
serde = { version = "1.0.217" }
6767
test-case = { version = "3.3.1" }
68-
cw-orch = "=0.24.1"
68+
cw-orch = "0.27.0"
6969
jsonschema-valid = { version = "0.5.2" }
7070
serde_json = { version = "1.0.138" }
7171
rstest = "0.25.0"

contracts/accounts/andromeda-fixed-multisig/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/data-storage/andromeda-boolean/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ exclude = [
1717
crate-type = ["cdylib", "rlib"]
1818

1919
[features]
20-
# for more explicit tests, cargo test --features=backtraces
21-
backtraces = ["cosmwasm-std/backtraces"]
20+
2221
# use library feature to disable all instantiate/execute/query exports
2322
library = []
2423
testing = ["cw-multi-test", "andromeda-testing"]

contracts/data-storage/andromeda-form/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ exclude = [
1717
crate-type = ["cdylib", "rlib"]
1818

1919
[features]
20-
# for more explicit tests, cargo test --features=backtraces
21-
backtraces = ["cosmwasm-std/backtraces"]
20+
2221
# use library feature to disable all instantiate/execute/query exports
2322
library = []
2423
testing = ["cw-multi-test", "andromeda-testing"]

contracts/data-storage/andromeda-primitive/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ exclude = [
2020
crate-type = ["cdylib", "rlib"]
2121

2222
[features]
23-
# for more explicit tests, cargo test --features=backtraces
24-
backtraces = ["cosmwasm-std/backtraces"]
23+
2524
# use library feature to disable all instantiate/execute/query exports
2625
library = []
2726
testing = ["cw-multi-test", "andromeda-testing"]

contracts/data-storage/andromeda-string-storage/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ exclude = [
1717
crate-type = ["cdylib", "rlib"]
1818

1919
[features]
20-
# for more explicit tests, cargo test --features=backtraces
21-
backtraces = ["cosmwasm-std/backtraces"]
20+
2221
# use library feature to disable all instantiate/execute/query exports
2322
library = []
2423
testing = ["cw-multi-test", "andromeda-testing"]

contracts/finance/andromeda-conditional-splitter/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/finance/andromeda-fixed-amount-splitter/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/finance/andromeda-rate-limiting-withdrawals/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/finance/andromeda-splitter/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/finance/andromeda-timelock/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test"]

contracts/finance/andromeda-validator-staking/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test"]

contracts/finance/andromeda-vesting/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/finance/andromeda-weighted-distribution-splitter/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/fungible-tokens/andromeda-cw20-exchange/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test"]

contracts/fungible-tokens/andromeda-cw20-staking/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/fungible-tokens/andromeda-cw20/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/fungible-tokens/andromeda-lockdrop/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/fungible-tokens/andromeda-merkle-airdrop/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test"]

contracts/math/andromeda-counter/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ exclude = [
1717
crate-type = ["cdylib", "rlib"]
1818

1919
[features]
20-
# for more explicit tests, cargo test --features=backtraces
21-
backtraces = ["cosmwasm-std/backtraces"]
20+
2221
# use library feature to disable all instantiate/execute/query exports
2322
library = []
2423
testing = ["cw-multi-test", "andromeda-testing"]

contracts/math/andromeda-curve/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/math/andromeda-date-time/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/math/andromeda-distance/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/math/andromeda-graph/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ exclude = [
1616
crate-type = ["cdylib", "rlib"]
1717

1818
[features]
19-
# for more explicit tests, cargo test --features=backtraces
20-
backtraces = ["cosmwasm-std/backtraces"]
19+
2120
# use library feature to disable all instantiate/execute/query exports
2221
library = []
2322
testing = ["cw-multi-test", "andromeda-testing"]

contracts/math/andromeda-matrix/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ exclude = [
1616
crate-type = ["cdylib", "rlib"]
1717

1818
[features]
19-
# for more explicit tests, cargo test --features=backtraces
20-
backtraces = ["cosmwasm-std/backtraces"]
19+
2120
# use library feature to disable all instantiate/execute/query exports
2221
library = []
2322
testing = ["cw-multi-test", "andromeda-testing"]

contracts/math/andromeda-point/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ exclude = [
1717
crate-type = ["cdylib", "rlib"]
1818

1919
[features]
20-
# for more explicit tests, cargo test --features=backtraces
21-
backtraces = ["cosmwasm-std/backtraces"]
20+
2221
# use library feature to disable all instantiate/execute/query exports
2322
library = []
2423
testing = ["cw-multi-test", "andromeda-testing"]

contracts/math/andromeda-shunting/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ edition = "2021"
77
crate-type = ["cdylib", "rlib"]
88

99
[features]
10-
# for more explicit tests, cargo test --features=backtraces
11-
backtraces = ["cosmwasm-std/backtraces"]
10+
1211
# use library feature to disable all instantiate/execute/query exports
1312
library = []
1413
testing = ["cw-multi-test"]

contracts/math/andromeda-time-gate/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/modules/andromeda-address-list/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/modules/andromeda-rates/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test"]

contracts/modules/andromeda-schema/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/non-fungible-tokens/andromeda-auction/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/non-fungible-tokens/andromeda-crowdfund/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
library = []
1514
testing = ["cw-multi-test", "andromeda-testing"]

contracts/non-fungible-tokens/andromeda-cw721/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ exclude = [
1717
crate-type = ["cdylib", "rlib"]
1818

1919
[features]
20-
# for more explicit tests, cargo test --features=backtraces
21-
backtraces = ["cosmwasm-std/backtraces"]
20+
2221
# use library feature to disable all instantiate/execute/query exports
2322
library = []
2423
testing = ["cw-multi-test", "andromeda-testing"]

contracts/non-fungible-tokens/andromeda-marketplace/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ rust-version = "1.75.0"
88
crate-type = ["cdylib", "rlib"]
99

1010
[features]
11-
# for more explicit tests, cargo test --features=backtraces
12-
backtraces = ["cosmwasm-std/backtraces"]
11+
1312
# use library feature to disable all instantiate/execute/query exports
1413
testing = ["cw-multi-test", "andromeda-testing"]
1514

contracts/os/andromeda-adodb/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ exclude = [
1616
crate-type = ["cdylib", "rlib"]
1717

1818
[features]
19-
# for more explicit tests, cargo test --features=backtraces
20-
backtraces = ["cosmwasm-std/backtraces"]
19+
2120
library = []
2221
testing = ["cw-multi-test"]
2322

contracts/os/andromeda-economics/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ exclude = [
1616
crate-type = ["cdylib", "rlib"]
1717

1818
[features]
19-
# for more explicit tests, cargo test --features=backtraces
20-
backtraces = ["cosmwasm-std/backtraces"]
19+
2120
library = []
2221
testing = ["cw-multi-test"]
2322

0 commit comments

Comments
 (0)