Skip to content

Commit e1b9ebf

Browse files
SeriousBugclaude
andcommitted
Update brotli dependency and bump version to 11.3.0
- 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 <noreply@anthropic.com>
1 parent 761fc86 commit e1b9ebf

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-embed-for-web"
3-
version = "11.2.1"
3+
version = "11.3.0"
44
description = "Rust Macro which embeds files into your executable. A fork of `rust-embed` with a focus on usage on web servers."
55
readme = "README.md"
66
documentation = "https://docs.rs/rust-embed-for-web"
@@ -12,13 +12,13 @@ edition = "2018"
1212

1313
[dependencies]
1414
walkdir = "2.4.0"
15-
rust-embed-for-web-impl = { version = "11.2.1", path = "impl" }
16-
rust-embed-for-web-utils = { version = "11.2.1", path = "utils" }
15+
rust-embed-for-web-impl = { version = "11.3.0", path = "impl" }
16+
rust-embed-for-web-utils = { version = "11.3.0", path = "utils" }
1717

1818
[dev-dependencies]
1919
chrono = { version = "0.4", default-features = false }
2020
flate2 = "1.0"
21-
brotli = "6.0"
21+
brotli = "8.0"
2222
zstd = "0.13"
2323
actix-web = "4.4"
2424

impl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rust-embed-for-web-impl"
33
description = "The proc-macro implementation of rust-embed-for-web."
4-
version = "11.2.1"
4+
version = "11.3.0"
55
readme = "readme.md"
66
repository = "https://github.com/SeriousBug/rust-embed-for-web"
77
license = "MIT"
@@ -13,7 +13,7 @@ edition = "2018"
1313
proc-macro = true
1414

1515
[dependencies]
16-
rust-embed-for-web-utils = { version = "11.1.4", path = "../utils" }
16+
rust-embed-for-web-utils = { version = "11.3.0", path = "../utils" }
1717

1818
syn = { version = "2.0", default-features = false, features = [
1919
"derive",
@@ -26,7 +26,7 @@ walkdir = "2.4.0"
2626

2727
# Compression
2828
flate2 = "1.0"
29-
brotli = "6.0"
29+
brotli = "8.0"
3030
zstd = { version = "0.13", optional = true }
3131

3232
globset = { version = "0.4", optional = true }

utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-embed-for-web-utils"
3-
version = "11.2.1"
3+
version = "11.3.0"
44
description = "Utilities for rust-embed-for-web"
55
readme = "readme.md"
66
repository = "https://github.com/SeriousBug/rust-embed-for-web"

0 commit comments

Comments
 (0)