From f880220b539c5f04c186faa286712b60041d4a97 Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Wed, 14 Aug 2024 19:28:15 +0200 Subject: [PATCH] fix: Bump a bunch of versions because of renames --- Cargo.lock | 6 +++--- crates/httpwg-cli/Cargo.toml | 4 ++-- crates/httpwg-macros/Cargo.toml | 4 ++-- crates/httpwg/Cargo.toml | 2 +- crates/loona/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 581c1e66..10b47085 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -614,7 +614,7 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "httpwg" -version = "0.1.1" +version = "0.2.0" dependencies = [ "buffet", "bytes", @@ -630,7 +630,7 @@ dependencies = [ [[package]] name = "httpwg-cli" -version = "0.1.0" +version = "0.2.0" dependencies = [ "buffet", "color-eyre", @@ -678,7 +678,7 @@ dependencies = [ [[package]] name = "httpwg-macros" -version = "0.1.0" +version = "0.2.0" dependencies = [ "httpwg", ] diff --git a/crates/httpwg-cli/Cargo.toml b/crates/httpwg-cli/Cargo.toml index fc9a791f..0aabe021 100644 --- a/crates/httpwg-cli/Cargo.toml +++ b/crates/httpwg-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "httpwg-cli" -version = "0.1.0" +version = "0.2.0" edition = "2021" [[bin]] @@ -11,7 +11,7 @@ path = "src/main.rs" color-eyre = "0.6.3" eyre = "0.6.12" buffet = { version = "0.2.0", path = "../buffet" } -httpwg = { version = "0.1.1", path = "../httpwg" } +httpwg = { version = "0.2.0", path = "../httpwg" } lexopt = "0.3.0" libc = "0.2.155" tokio = { version = "1.39.2", features = ["time"] } diff --git a/crates/httpwg-macros/Cargo.toml b/crates/httpwg-macros/Cargo.toml index 39548e4d..f869d7b2 100644 --- a/crates/httpwg-macros/Cargo.toml +++ b/crates/httpwg-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "httpwg-macros" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/bearcove/loona" @@ -12,4 +12,4 @@ Macros to allow generating httpwg unit tests rust-version = "1.75" [dependencies] -httpwg = { version = "0.1.1", path = "../httpwg" } +httpwg = { version = "0.2.0", path = "../httpwg" } diff --git a/crates/httpwg/Cargo.toml b/crates/httpwg/Cargo.toml index 960f713d..d6799d6f 100644 --- a/crates/httpwg/Cargo.toml +++ b/crates/httpwg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "httpwg" -version = "0.1.1" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/bearcove/loona" diff --git a/crates/loona/Cargo.toml b/crates/loona/Cargo.toml index 5b748d4a..202db593 100644 --- a/crates/loona/Cargo.toml +++ b/crates/loona/Cargo.toml @@ -62,7 +62,7 @@ futures-util = { version = "0.3.30", default-features = false, features = [ libc = "0.2.155" httpwg = { path = "../httpwg" } color-eyre = "0.6.3" -httpwg-macros = { path = "../httpwg-macros" } +httpwg-macros = { version = "0.2.0", path = "../httpwg-macros" } cargo-husky = { version = "1", features = ["user-hooks"] } criterion = "0.5.1" codspeed-criterion-compat = "2.6.0"