~repos /rust-embed

#rust#proc-macro#http

git clone https://pyrossh.dev/repos/rust-embed.git
Discussions: https://groups.google.com/g/rust-embed-devs

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


Files changed (4) hide show
  1. Cargo.toml +3 -3
  2. impl/Cargo.toml +1 -1
  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 = "5.6.0"
3
+ version = "5.7.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,8 +33,8 @@ required-features = ["interpolate-folder-path"]
33
33
 
34
34
  [dependencies]
35
35
  walkdir = "2.3.1"
36
- rust-embed-impl = { version = "5.5.1", path = "impl"}
36
+ rust-embed-impl = { version = "5.7.0", path = "impl"}
37
- rust-embed-utils = { version = "5.0.0", path = "utils"}
37
+ rust-embed-utils = { version = "5.1.0", path = "utils"}
38
38
 
39
39
  include-flate = { version = "0.1", optional = true, features = ["stable"] }
40
40
  actix-web = { version = "3", default-features = false, optional = true }
impl/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed-impl"
3
- version = "5.6.0"
3
+ version = "5.7.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"
readme.md CHANGED
@@ -16,7 +16,7 @@ You can use this to embed your css, js and images into a single executable which
16
16
 
17
17
  ```toml
18
18
  [dependencies]
19
- rust-embed="5.6.0"
19
+ rust-embed="5.7.0"
20
20
  ```
21
21
 
22
22
  ## Documentation
utils/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust-embed-utils"
3
- version = "5.0.0"
3
+ version = "5.1.0"
4
4
  description = "Utilities for rust-embed"
5
5
  readme = "readme.md"
6
6
  documentation = "https://docs.rs/rust-embed"