~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.
cdb6501c
—
pyros2097 4 years ago
v5.9.0
- Cargo.toml +2 -2
- changelog.md +6 -0
- impl/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.9.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.
|
|
36
|
+
rust-embed-impl = { version = "5.9.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,12 @@ 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.9.0] - 2021-01-18
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Added path prefix attribute
|
|
15
|
+
|
|
10
16
|
## [5.8.0] - 2021-01-06
|
|
11
17
|
|
|
12
18
|
### Fixed
|
impl/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rust-embed-impl"
|
|
3
|
-
version = "5.
|
|
3
|
+
version = "5.9.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"
|