Skip to content

Commit

Permalink
chore: use workspace for serde
Browse files Browse the repository at this point in the history
  • Loading branch information
joemonem committed Jan 2, 2025
1 parent eb38456 commit 809fadb
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion contracts/finance/andromeda-cross-chain-swap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion contracts/os/andromeda-vfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
2 changes: 1 addition & 1 deletion packages/andromeda-data-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [] }
2 changes: 1 addition & 1 deletion packages/andromeda-finance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion packages/andromeda-fungible-tokens/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion packages/andromeda-modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion packages/andromeda-non-fungible-tokens/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion packages/deploy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 809fadb

Please sign in to comment.