From ed3d5cf719af5f7f2328c0c708e65befa6caad6a Mon Sep 17 00:00:00 2001 From: Islam El-Ashi Date: Fri, 20 Sep 2024 10:11:36 +0200 Subject: [PATCH] fix: publishing crates with correct versions --- canbench-bin/Cargo.toml | 4 ++-- canbench-rs/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/canbench-bin/Cargo.toml b/canbench-bin/Cargo.toml index b6d63f9..4a08150 100644 --- a/canbench-bin/Cargo.toml +++ b/canbench-bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "canbench" -version = "0.1.6" +version = "0.1.6" # NOTE: whenever this is updated, canbench-rs-macros below should also be updated. edition = "2021" license = "Apache-2.0" description = "A benchmarking framework for canisters on the Internet Computer." @@ -13,7 +13,7 @@ name = "canbench" path = "src/main.rs" [dependencies] -canbench-rs = { path = "../canbench-rs" } +canbench-rs = { path = "../canbench-rs", version = "0.1.6" } candid.workspace = true clap.workspace = true colored.workspace = true diff --git a/canbench-rs/Cargo.toml b/canbench-rs/Cargo.toml index b960cfe..67237ad 100644 --- a/canbench-rs/Cargo.toml +++ b/canbench-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "canbench-rs" -version = "0.1.6" +version = "0.1.6" # NOTE: whenever this is updated, canbench-rs-macros below should also be updated. edition = "2021" license = "Apache-2.0" description = "The rust library for `canbench`, the benchmarking framework for canisters on the Internet Computer." @@ -14,7 +14,7 @@ readme = "../README.md" path = "src/lib.rs" [dependencies] -canbench-rs-macros = { path = "../canbench-rs-macros" } +canbench-rs-macros = { path = "../canbench-rs-macros", version = "0.1.6" } candid.workspace = true ic-cdk.workspace= true serde.workspace = true