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


494d979f pyrossh

2 years ago
v6.8.1
Files changed (5) hide show
  1. Cargo.toml +3 -3
  2. changelog.md +4 -1
  3. impl/Cargo.toml +1 -1
  4. readme.md +1 -1
  5. utils/Cargo.toml +1 -1
Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed"
3
- version = "6.8.0"
3
+ version = "6.8.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"
@@ -63,8 +63,8 @@ required-features = ["mime-guess"]
63
63
 
64
64
  [dependencies]
65
65
  walkdir = "2.3.2"
66
- rust-embed-impl = { version = "6.8.0", path = "impl"}
66
+ rust-embed-impl = { version = "6.8.1", path = "impl"}
67
- rust-embed-utils = { version = "7.8.0", path = "utils"}
67
+ rust-embed-utils = { version = "7.8.1", path = "utils"}
68
68
 
69
69
  include-flate = { version = "0.2", optional = true, features = ["stable"] }
70
70
  actix-web = { version = "4", optional = true }
changelog.md CHANGED
@@ -6,10 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  Thanks to [Mark Drobnak](https://github.com/AzureMarker) for the changelog.
9
+ ## [6.8.1] - 2023-06-30
10
+
11
+ - Fix failing compilation under compression feature [#182](https://github.com/pyrossh/rust-embed/issues/182). Thanks to [osiewicz](https://github.com/osiewicz)
9
12
 
10
13
  ## [6.8.0] - 2023-06-30
11
14
 
12
- - Update `include-flate` to v0.2 [#211](https://github.com/pyrossh/rust-embed/issues/182)
15
+ - Update `include-flate` to v0.2 [#182](https://github.com/pyrossh/rust-embed/issues/182)
13
16
 
14
17
  ## [6.7.0] - 2023-06-09
15
18
 
impl/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed-impl"
3
- version = "6.8.0"
3
+ version = "6.8.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"
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.8.0"
11
+ rust-embed="6.8.1"
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.8.0"
3
+ version = "7.8.1"
4
4
  description = "Utilities for rust-embed"
5
5
  readme = "readme.md"
6
6
  documentation = "https://docs.rs/rust-embed"