~repos /rust-embed
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.
eb58829b
—
pyros2097 4 years ago
bump version to 5.7.0
- Cargo.toml +3 -3
- impl/Cargo.toml +1 -1
- readme.md +1 -1
- utils/Cargo.toml +1 -1
Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rust-embed"
|
|
3
|
-
version = "5.
|
|
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.
|
|
36
|
+
rust-embed-impl = { version = "5.7.0", path = "impl"}
|
|
37
|
-
rust-embed-utils = { version = "5.
|
|
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.
|
|
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.
|
|
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.
|
|
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"
|