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"