From 6592321dd417390da5535a87621718777f9c052b Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Mon, 2 Mar 2026 14:08:07 +1100 Subject: [PATCH 1/3] chore: Update dependencies --- Cargo.toml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f9748b7..ab2c29d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,26 +11,26 @@ license = "MIT" edition = "2024" [dependencies] -anyhow = "1.0.98" -async-trait = "0.1.86" -bytes = "1.10.1" -chrono = "0.4.41" -futures = "0.3.31" -futures-util = "0.3.31" +anyhow = "1.0.102" +async-trait = "0.1.89" +bytes = "1.11.1" +chrono = "0.4.44" +futures = "0.3.32" +futures-util = "0.3.32" hex = "0.4.3" -http = "1.3.1" +http = "1.4.0" http-body = "1.0.1" http-body-util = "0.1.3" -hyper = { version = "1.6.0", features = ["full"] } -hyper-util = { version = "0.1.11", features = ["full"] } +hyper = { version = "1.8.1", features = ["full"] } +hyper-util = { version = "0.1.20", features = ["full"] } itertools = "0.14.0" lazy_static = "1.5.0" maplit = "1.0.2" -serde = "1.0.219" -serde_json = "1.0.140" -tracing = "0.1.41" -tokio = { version = "1.44.2", features = ["full"] } +serde = "1.0.228" +serde_json = "1.0.149" +tracing = "0.1.44" +tokio = { version = "1.49.0", features = ["full"] } [dev-dependencies] expectest = "0.12.0" -test-log = "0.2.17" +test-log = "0.2.19" From a199e72d769bf84b39012407d5a0cea8712455b7 Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Mon, 2 Mar 2026 14:10:15 +1100 Subject: [PATCH 2/3] update changelog for release 0.6.3 --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0e624e..a2c3857 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ +# 0.6.3 - Maintenance Release + +* 6592321 - chore: Update dependencies (Ronald Holshausen, Mon Mar 2 14:08:07 2026 +1100) +* 45fb778 - bump version to 0.6.3 (Ronald Holshausen, Mon Jun 16 10:00:27 2025 +1000) + # 0.6.2 - Bugfix Release * 7ab7313 - fix: Resource path was incorrectly calculated from the base path (Ronald Holshausen, Fri Jun 13 15:44:20 2025 +1000) From 95aa2d71f273dba615289756fa1ec95d4e11767e Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Mon, 2 Mar 2026 14:10:39 +1100 Subject: [PATCH 3/3] bump version to 0.6.4 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ab2c29d..559f785 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webmachine-rust" -version = "0.6.3" +version = "0.6.4" authors = ["Ronald Holshausen "] description = "Port of the Ruby Webmachine library to Rust" homepage = "https://github.com/rholshausen/webmachine-rust"