diff --git a/contracts/finance/andromeda-cross-chain-swap/Cargo.toml b/contracts/finance/andromeda-cross-chain-swap/Cargo.toml index 6ea1c1f10..abba9522a 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.217", default-features = false, features = ["derive"] } +serde = { workspace = true } semver = { workspace = true } 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 5250fbc6d..dd14474bc 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.217" +serde = { workspace = true } 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 58845090d..164c89d60 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.217", default-features = false, features = ["derive"] } +serde = { workspace = true } andromeda-std = { workspace = true } diff --git a/packages/andromeda-data-storage/Cargo.toml b/packages/andromeda-data-storage/Cargo.toml index e9ec8cf37..ebdcfca3b 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.217", default-features = false, features = ["derive"] } +serde = { workspace = true } cw-utils = { workspace = true } andromeda-std = { workspace = true, features = [] } diff --git a/packages/andromeda-finance/Cargo.toml b/packages/andromeda-finance/Cargo.toml index c5c515ce4..0d42e5936 100644 --- a/packages/andromeda-finance/Cargo.toml +++ b/packages/andromeda-finance/Cargo.toml @@ -16,7 +16,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] cosmwasm-std = { workspace = true, features = ["staking"] } cosmwasm-schema = { workspace = true } -serde = { version = "1.0.217", default-features = false, features = ["derive"] } +serde = { workspace = true } cw-utils = { workspace = true } cw721 = { workspace = true } cw721-base = { workspace = true } diff --git a/packages/andromeda-fungible-tokens/Cargo.toml b/packages/andromeda-fungible-tokens/Cargo.toml index 40773db9c..e55199254 100644 --- a/packages/andromeda-fungible-tokens/Cargo.toml +++ b/packages/andromeda-fungible-tokens/Cargo.toml @@ -16,7 +16,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] cosmwasm-std = { workspace = true } cosmwasm-schema = { workspace = true } -serde = { version = "1.0.217", default-features = false, features = ["derive"] } +serde = { workspace = true } 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 d739230ad..9848169a2 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.217", default-features = false, features = ["derive"] } +serde = { workspace = true } 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 05c430e8b..a69705dd6 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.217", default-features = false, features = ["derive"] } +serde = { workspace = true } cw-utils = { workspace = true } cw721 = { workspace = true } cw721-base = { workspace = true } diff --git a/packages/deploy/Cargo.toml b/packages/deploy/Cargo.toml index 3aaa22c00..27704dac7 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.217", default-features = false, features = ["derive"] } +serde = { workspace = true } 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 454a86a19..b95565abb 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.217", default-features = false, features = ["derive"] } +serde = { workspace = true } semver = { workspace = true } cw20 = { version = "1.0.1" } cw20-base = { workspace = true, features = ["library"] }