~repos /rust-embed

#rust#proc-macro#http

git clone https://pyrossh.dev/repos/rust-embed.git

rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.


16050362 Peter John

2 years ago
release v6.6.1
Files changed (3) hide show
  1. Cargo.toml +2 -2
  2. changelog.md +4 -0
  3. readme.md +1 -1
Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed"
3
- version = "6.6.0"
3
+ version = "6.6.1"
4
4
  description = "Rust Custom Derive Macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev"
5
5
  readme = "readme.md"
6
6
  documentation = "https://docs.rs/rust-embed"
@@ -84,7 +84,7 @@ sha2 = "0.10"
84
84
  debug-embed = ["rust-embed-impl/debug-embed", "rust-embed-utils/debug-embed"]
85
85
  interpolate-folder-path = ["rust-embed-impl/interpolate-folder-path"]
86
86
  compression = ["rust-embed-impl/compression", "include-flate"]
87
- mime-guess = ["rust-embed-impl/mime-guess"]
87
+ mime-guess = ["rust-embed-impl/mime-guess", "rust-embed-utils/mime-guess"]
88
88
  include-exclude = ["rust-embed-impl/include-exclude", "rust-embed-utils/include-exclude"]
89
89
  actix = ["actix-web", "mime_guess"]
90
90
  warp-ex = ["warp", "tokio", "mime_guess"]
changelog.md CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  Thanks to [Mark Drobnak](https://github.com/AzureMarker) for the changelog.
9
9
 
10
+ ## [6.6.1] - 2023-03-25
11
+
12
+ - Fix mime-guess feature not working properly [#209](https://github.com/pyrossh/rust-embed/issues/209)
13
+
10
14
  ## [6.6.0] - 2023-03-05
11
15
 
12
16
  - sort_by_file_name() requires walkdir v2.3.2 [#206](https://github.com/pyrossh/rust-embed/issues/206)
readme.md CHANGED
@@ -8,7 +8,7 @@ You can use this to embed your css, js and images into a single executable which
8
8
 
9
9
  ```toml
10
10
  [dependencies]
11
- rust-embed="6.6.0"
11
+ rust-embed="6.6.1"
12
12
  ```
13
13
 
14
14
  ## Documentation