Skip to content

Commit

Permalink
chore: remove un-needed packages
Browse files Browse the repository at this point in the history
  • Loading branch information
PFC-developer committed Apr 3, 2024
1 parent fe2515e commit d7f5f23
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
27 changes: 12 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,32 +17,29 @@ documentation = "https://github.com/PFC-Validator/PFC-whitelist#readme"
keywords = ["blockchain", "cosmos", "cosmwasm"]

[workspace.dependencies]
cw2 = "2.0.0"
cw20 = "2.0.0"
cw-item-set = "0.7.1"
cw-ownable = "0.5.1"
cw-ownable-derive = "0.5.1"
cw-controllers = "2.0.0"
cw-storage-plus = { version = "2.0.0", features = ["iterator"] }
cosmwasm-schema = "2.0.1"
cosmwasm-std = { version = "2.0.1", features = [
# Kuji is @ 1.2
"cosmwasm_1_2",
# Enable this if you only deploy to chains that have CosmWasm 1.4 or higher
# "cosmwasm_1_4",
"iterator", "stargate"
] }
cosmwasm-storage = "1.5.2"
serde = { version = "1.0.196", default-features = false, features = ["derive"] }
serde_json = "1.0.113"

schemars = { version = "0.8.16" }
proc-macro2 = "1.0.51"
quote = "1.0.23"
syn = "2.0.55"
thiserror = "1.0.57"
serde = { version = "1.0.196", default-features = false, features = ["derive"] }
cosmwasm-schema = "2.0.1"
pfc-whitelist-derive = { version = "2.0.0", path = "packages/pfc-whitelist-derive" }
cw-storage-plus = { version = "2.0.0", features = ["iterator"] }
cw-ownable = "0.5.1"
cw-ownable-derive = "0.5.1"

thiserror = "1.0.57"
pfc-whitelist = { version = "2.0.0", path = "packages/pfc-whitelist" }
getrandom = { version = "0.2", features = ["js"] }

proc-macro2 = "1.0.51"
quote = "1.0.23"
syn = "2.0.55"
[profile.release]
opt-level = 3
debug = false
Expand Down
6 changes: 3 additions & 3 deletions packages/pfc-whitelist-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ rust-version = { workspace = true }


[lib]
proc-macro=true
proc-macro = true

[dependencies]
proc-macro2 = { workspace = true }
quote= { workspace = true }
syn={ workspace = true }
quote = { workspace = true }
syn = { workspace = true }
[dev-dependencies]
cosmwasm-schema = { workspace = true }
cw-ownable = { workspace = true }

0 comments on commit d7f5f23

Please sign in to comment.