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


9ece1fc8 pyros2097

4 years ago
bump version to 5.8.0
Files changed (3) hide show
  1. Cargo.toml +2 -2
  2. changelog.md +12 -0
  3. impl/Cargo.toml +1 -1
Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed"
3
- version = "5.7.0"
3
+ version = "5.8.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"
@@ -33,7 +33,7 @@ required-features = ["interpolate-folder-path"]
33
33
 
34
34
  [dependencies]
35
35
  walkdir = "2.3.1"
36
- rust-embed-impl = { version = "5.7.0", path = "impl"}
36
+ rust-embed-impl = { version = "5.8.0", path = "impl"}
37
37
  rust-embed-utils = { version = "5.1.0", path = "utils"}
38
38
 
39
39
  include-flate = { version = "0.1", optional = true, features = ["stable"] }
changelog.md CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  Thanks to [Mcat12](https://github.com/Mcat12) for the changelog.
9
9
 
10
+ ## [5.8.0] - 2021-01-06
11
+
12
+ ### Fixed
13
+
14
+ - Fixed compiling with latest version of syn
15
+
16
+ ## [5.7.0] - 2020-12-08
17
+
18
+ ### Fixed
19
+
20
+ - Fix feature flag typo
21
+
10
22
  ## [5.6.0] - 2020-07-19
11
23
 
12
24
  ### Fixed
impl/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed-impl"
3
- version = "5.7.0"
3
+ version = "5.8.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"