Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-embed-for-web"
version = "11.4.0"
version = "11.4.1"
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"
Expand All @@ -12,8 +12,8 @@ edition = "2018"

[dependencies]
walkdir = "2.4.0"
rust-embed-for-web-impl = { version = "11.4.0", path = "impl" }
rust-embed-for-web-utils = { version = "11.4.0", path = "utils" }
rust-embed-for-web-impl = { version = "11.4.1", path = "impl" }
rust-embed-for-web-utils = { version = "11.4.1", path = "utils" }

[dev-dependencies]
chrono = { version = "0.4", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ executable in exchange for better performance at runtime. In particular:

```toml
[dependencies]
rust-embed-for-web="11.4.0"
rust-embed-for-web="11.4.1"
```

## Usage
Expand Down Expand Up @@ -125,7 +125,7 @@ To enable zstd compression, add this to your `Cargo.toml`:

```toml
[dependencies]
rust-embed-for-web = { version = "11.4.0", features = ["compression-zstd"] }
rust-embed-for-web = { version = "11.4.1", features = ["compression-zstd"] }
```

You can also disable zstd compression for specific embeds using the `#[zstd = false]` attribute as described in the "Disabling compression" section above.
Expand Down
8 changes: 6 additions & 2 deletions impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rust-embed-for-web-impl"
description = "The proc-macro implementation of rust-embed-for-web."
version = "11.4.0"
version = "11.4.1"
readme = "readme.md"
repository = "https://github.com/SeriousBug/rust-embed-for-web"
license = "MIT"
Expand All @@ -13,12 +13,16 @@ edition = "2018"
proc-macro = true

[dependencies]
rust-embed-for-web-utils = { version = "11.4.0", path = "../utils" }
rust-embed-for-web-utils = { version = "11.4.1", path = "../utils" }

syn = { version = "2.0", default-features = false, features = [
"derive",
"parsing",
"proc-macro",
# Provides ToTokens, required by syn::Error::new_spanned. Without it the
# crate fails to compile when published/built in isolation; the workspace
# build only works because another crate enables this feature.
"printing",
] }
quote = "1.0"
proc-macro2 = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-embed-for-web-utils"
version = "11.4.0"
version = "11.4.1"
description = "Utilities for rust-embed-for-web"
readme = "readme.md"
repository = "https://github.com/SeriousBug/rust-embed-for-web"
Expand Down
Loading