From e1b9ebfee8dffec9ba5b0e6f0f4a6b861d2ebe0f Mon Sep 17 00:00:00 2001 From: Kaan Barmore-Genc Date: Fri, 7 Nov 2025 17:55:05 -0600 Subject: [PATCH] Update brotli dependency and bump version to 11.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated brotli from 6.0 to 8.0.2 - Bumped package version to 11.3.0 across all crates - All tests pass including brotli compression roundtrip tests This release includes the recently merged zstd compression support and the updated brotli dependency. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Cargo.toml | 8 ++++---- impl/Cargo.toml | 6 +++--- utils/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 54e2d80..7ea23d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-embed-for-web" -version = "11.2.1" +version = "11.3.0" description = "Rust Macro which embeds files into your executable. A fork of `rust-embed` with a focus on usage on web servers." readme = "README.md" documentation = "https://docs.rs/rust-embed-for-web" @@ -12,13 +12,13 @@ edition = "2018" [dependencies] walkdir = "2.4.0" -rust-embed-for-web-impl = { version = "11.2.1", path = "impl" } -rust-embed-for-web-utils = { version = "11.2.1", path = "utils" } +rust-embed-for-web-impl = { version = "11.3.0", path = "impl" } +rust-embed-for-web-utils = { version = "11.3.0", path = "utils" } [dev-dependencies] chrono = { version = "0.4", default-features = false } flate2 = "1.0" -brotli = "6.0" +brotli = "8.0" zstd = "0.13" actix-web = "4.4" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index e86b644..7ed1947 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rust-embed-for-web-impl" description = "The proc-macro implementation of rust-embed-for-web." -version = "11.2.1" +version = "11.3.0" readme = "readme.md" repository = "https://github.com/SeriousBug/rust-embed-for-web" license = "MIT" @@ -13,7 +13,7 @@ edition = "2018" proc-macro = true [dependencies] -rust-embed-for-web-utils = { version = "11.1.4", path = "../utils" } +rust-embed-for-web-utils = { version = "11.3.0", path = "../utils" } syn = { version = "2.0", default-features = false, features = [ "derive", @@ -26,7 +26,7 @@ walkdir = "2.4.0" # Compression flate2 = "1.0" -brotli = "6.0" +brotli = "8.0" zstd = { version = "0.13", optional = true } globset = { version = "0.4", optional = true } diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 540b4be..60806e9 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-embed-for-web-utils" -version = "11.2.1" +version = "11.3.0" description = "Utilities for rust-embed-for-web" readme = "readme.md" repository = "https://github.com/SeriousBug/rust-embed-for-web"