diff --git a/Cargo.lock b/Cargo.lock index 94241575b..129df07e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5055,9 +5055,9 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" [[package]] name = "serde" -version = "1.0.215" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f" +checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" dependencies = [ "serde_derive", ] @@ -5100,9 +5100,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.215" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" +checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 605cdb625..2d415633d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,7 +64,7 @@ cosmwasm-schema = "1.5.8" semver = "1.0.0" enum-repr = "0.2.6" cw-multi-test = { version = "1.0.0", features = ["cosmwasm_1_2"] } -serde = { version = "1.0.215" } +serde = { version = "1.0.216" } test-case = { version = "3.3.1" } cw-orch = "=0.24.1" jsonschema-valid = { version = "0.5.2"} diff --git a/contracts/finance/andromeda-cross-chain-swap/Cargo.toml b/contracts/finance/andromeda-cross-chain-swap/Cargo.toml index 96b5b41c8..98cf2416c 100644 --- a/contracts/finance/andromeda-cross-chain-swap/Cargo.toml +++ b/contracts/finance/andromeda-cross-chain-swap/Cargo.toml @@ -21,7 +21,7 @@ cosmwasm-schema = { workspace = true } cw-storage-plus = { workspace = true } cw-utils = { workspace = true } schemars = { version = "0.8.10" } -serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde = { version = "1.0.216", default-features = false, features = ["derive"] } semver = { workspace = true } andromeda-std = { workspace = true } diff --git a/contracts/fungible-tokens/andromeda-ics20/Cargo.toml b/contracts/fungible-tokens/andromeda-ics20/Cargo.toml index 71d69e0aa..9a90e283c 100644 --- a/contracts/fungible-tokens/andromeda-ics20/Cargo.toml +++ b/contracts/fungible-tokens/andromeda-ics20/Cargo.toml @@ -26,7 +26,7 @@ semver = { workspace = true } cw20-base = { workspace = true } cw-controllers = "=1.1.2" schemars = "0.8.21" -serde = "1.0.215" +serde = "1.0.216" thiserror = "2.0.6" andromeda-std = { workspace = true } diff --git a/contracts/fungible-tokens/andromeda-merkle-airdrop/Cargo.toml b/contracts/fungible-tokens/andromeda-merkle-airdrop/Cargo.toml index a823fe079..fdb84bf29 100644 --- a/contracts/fungible-tokens/andromeda-merkle-airdrop/Cargo.toml +++ b/contracts/fungible-tokens/andromeda-merkle-airdrop/Cargo.toml @@ -24,7 +24,7 @@ cw20 = { workspace = true } cw-asset = { workspace = true } sha2 = "0.10.6" hex = "0.4.3" -serde = "1.0.215" +serde = "1.0.216" andromeda-std = { workspace = true } andromeda-fungible-tokens = { workspace = true } diff --git a/contracts/os/andromeda-vfs/Cargo.toml b/contracts/os/andromeda-vfs/Cargo.toml index 4620018ef..27437eb5c 100644 --- a/contracts/os/andromeda-vfs/Cargo.toml +++ b/contracts/os/andromeda-vfs/Cargo.toml @@ -25,7 +25,7 @@ testing = ["cw-multi-test"] cosmwasm-std = { workspace = true } cosmwasm-schema = { workspace = true } cw-storage-plus = { workspace = true } -serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde = { version = "1.0.216", default-features = false, features = ["derive"] } andromeda-std = { workspace = true } diff --git a/packages/andromeda-data-storage/Cargo.toml b/packages/andromeda-data-storage/Cargo.toml index 94018f948..71f3e033c 100644 --- a/packages/andromeda-data-storage/Cargo.toml +++ b/packages/andromeda-data-storage/Cargo.toml @@ -16,7 +16,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] cosmwasm-std = { workspace = true } cosmwasm-schema = { workspace = true } -serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde = { version = "1.0.216", default-features = false, features = ["derive"] } cw-utils = { workspace = true } andromeda-std = { workspace = true, features = [] } diff --git a/packages/andromeda-finance/Cargo.toml b/packages/andromeda-finance/Cargo.toml index c5fe1c76d..14386e0d5 100644 --- a/packages/andromeda-finance/Cargo.toml +++ b/packages/andromeda-finance/Cargo.toml @@ -17,7 +17,7 @@ testing = ["cw-multi-test"] [dependencies] cosmwasm-std = { workspace = true, features = ["staking"] } cosmwasm-schema = { workspace = true } -serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde = { version = "1.0.216", default-features = false, features = ["derive"] } cw-utils = { workspace = true } cw3 = { workspace = true } cw4 = { workspace = true } diff --git a/packages/andromeda-fungible-tokens/Cargo.toml b/packages/andromeda-fungible-tokens/Cargo.toml index bd892e68c..f203a6eba 100644 --- a/packages/andromeda-fungible-tokens/Cargo.toml +++ b/packages/andromeda-fungible-tokens/Cargo.toml @@ -17,7 +17,7 @@ testing = ["cw-multi-test"] [dependencies] cosmwasm-std = { workspace = true } cosmwasm-schema = { workspace = true } -serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde = { version = "1.0.216", default-features = false, features = ["derive"] } cw-utils = { workspace = true } cw20 = { workspace = true } cw20-base = { workspace = true } diff --git a/packages/andromeda-modules/Cargo.toml b/packages/andromeda-modules/Cargo.toml index d84f18302..ff44ed0cf 100644 --- a/packages/andromeda-modules/Cargo.toml +++ b/packages/andromeda-modules/Cargo.toml @@ -16,7 +16,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] cosmwasm-std = { workspace = true } cosmwasm-schema = { workspace = true } -serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde = { version = "1.0.216", default-features = false, features = ["derive"] } cw-utils = { workspace = true } cw721 = { workspace = true } cw721-base = { workspace = true } diff --git a/packages/andromeda-non-fungible-tokens/Cargo.toml b/packages/andromeda-non-fungible-tokens/Cargo.toml index ddf767d70..6166a0975 100644 --- a/packages/andromeda-non-fungible-tokens/Cargo.toml +++ b/packages/andromeda-non-fungible-tokens/Cargo.toml @@ -17,7 +17,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] cosmwasm-std = { workspace = true } cosmwasm-schema = { workspace = true } -serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde = { version = "1.0.216", default-features = false, features = ["derive"] } cw-utils = { workspace = true } cw721 = { workspace = true } cw721-base = { workspace = true } diff --git a/packages/deploy/Cargo.toml b/packages/deploy/Cargo.toml index 57168540f..3d55c33f7 100644 --- a/packages/deploy/Cargo.toml +++ b/packages/deploy/Cargo.toml @@ -14,7 +14,7 @@ cosmwasm-std = { workspace = true, features = ["ibc3", "cosmwasm_1_2"] } cosmwasm-schema = { workspace = true } cw-storage-plus = { workspace = true } schemars = "0.8.10" -serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde = { version = "1.0.216", default-features = false, features = ["derive"] } semver = { workspace = true } cw20 = { version = "1.0.1" } cw20-base = { workspace = true, features = ["library"] } diff --git a/packages/std/Cargo.toml b/packages/std/Cargo.toml index 9ac7e384a..d975ae343 100644 --- a/packages/std/Cargo.toml +++ b/packages/std/Cargo.toml @@ -21,7 +21,7 @@ cosmwasm-std = { workspace = true, features = ["ibc3", "cosmwasm_1_2"] } cosmwasm-schema = { workspace = true } cw-storage-plus = { workspace = true } schemars = "0.8.10" -serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde = { version = "1.0.216", default-features = false, features = ["derive"] } semver = { workspace = true } cw20 = { version = "1.0.1" } cw20-base = { workspace = true, features = ["library"] }