From 446a0675b431e26d187f6229a5d02e74c2d8528f Mon Sep 17 00:00:00 2001 From: PFC <81114960+PFC-developer@users.noreply.github.com> Date: Wed, 3 Apr 2024 15:30:48 -0500 Subject: [PATCH] fix: use v2 of cw-plus-plus packages (and use git-refs) --- Cargo.toml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dbc22a1..bd137a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ resolver = "2" [workspace.package] -version = "2.0.0" +version = "2.0.1" authors = ["PFC "] edition = "2021" rust-version = "1.73.0" @@ -28,18 +28,19 @@ cosmwasm-std = { version = "2.0.1", features = [ schemars = { version = "0.8.16" } 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" +cw-ownable = { version = "2.0.0", git = "https://github.com/PFC-Validator/cw-plus-plus", branch = "v2.0.0-wip" } +cw-ownable-derive = { version = "2.0.0", git = "https://github.com/PFC-Validator/cw-plus-plus", branch = "v2.0.0-wip" } -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" + +thiserror = "1.0.57" +pfc-whitelist = { version = "2.0.1", path = "packages/pfc-whitelist" } +pfc-whitelist-derive = { version = "2.0.1", path = "packages/pfc-whitelist-derive" } [profile.release] opt-level = 3 debug = false