~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.


9a3bffa9 Peter John

3 years ago
v6.4.0
Files changed (4) hide show
  1. Cargo.toml +2 -2
  2. changelog.md +5 -0
  3. readme.md +1 -1
  4. utils/Cargo.toml +1 -1
Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed"
3
- version = "6.3.0"
3
+ version = "6.4.0"
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"
@@ -49,7 +49,7 @@ required-features = ["include-exclude"]
49
49
  [dependencies]
50
50
  walkdir = "2.3.1"
51
51
  rust-embed-impl = { version = "6.2.0", path = "impl"}
52
- rust-embed-utils = { version = "7.1.0", path = "utils"}
52
+ rust-embed-utils = { version = "7.2.0", path = "utils"}
53
53
 
54
54
  include-flate = { version = "0.1", optional = true, features = ["stable"] }
55
55
  actix-web = { version = "3", default-features = false, optional = true }
changelog.md CHANGED
@@ -7,6 +7,11 @@ 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.4.0] - 2022-04-15
11
+
12
+ - Order files by filename [#171](https://github.com/pyros2097/rust-embed/issues/171). Thanks to [apognu](https://github.com/apognu)
13
+
14
+
10
15
  ## [6.3.0] - 2021-11-28
11
16
 
12
17
  - Fixed a security issue in debug mode [#159](https://github.com/pyros2097/rust-embed/issues/159). Thanks to [5225225](https://github.com/5225225)
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.3.0"
11
+ rust-embed="6.4.0"
12
12
  ```
13
13
 
14
14
  ## Documentation
utils/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed-utils"
3
- version = "7.1.0"
3
+ version = "7.2.0"
4
4
  description = "Utilities for rust-embed"
5
5
  readme = "readme.md"
6
6
  documentation = "https://docs.rs/rust-embed"