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


d6454eab Peter John

4 years ago
v6.0.1
Files changed (4) hide show
  1. Cargo.toml +2 -2
  2. changelog.md +4 -0
  3. impl/Cargo.toml +1 -1
  4. readme.md +1 -1
Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed"
3
- version = "6.0.0"
3
+ version = "6.0.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"
@@ -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 = "6.0.0", path = "impl"}
36
+ rust-embed-impl = { version = "6.0.1", path = "impl"}
37
37
  rust-embed-utils = { version = "6.0.0", path = "utils"}
38
38
 
39
39
  include-flate = { version = "0.1", optional = true, features = ["stable"] }
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.0.1] - 2021-08-21
11
+
12
+ - Added doc comments to macro generated functions
13
+
10
14
  ## [6.0.0] - 2021-08-01
11
15
 
12
16
  Idea came about from [Cody Casterline](https://github.com/NfNitLoop)
impl/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed-impl"
3
- version = "6.0.0"
3
+ version = "6.0.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.0.0"
11
+ rust-embed="6.0.1"
12
12
  ```
13
13
 
14
14
  ## Documentation