~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.
58b60b3d
—
pyros2097 5 years ago
release v5.6.0
- Cargo.toml +1 -1
- changelog.md +1 -1
- impl/Cargo.toml +1 -1
- readme.md +1 -1
Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rust-embed"
|
|
3
|
-
version = "5.
|
|
3
|
+
version = "5.6.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"
|
changelog.md
CHANGED
|
@@ -7,7 +7,7 @@ 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.6.0] - 2020-07-
|
|
10
|
+
## [5.6.0] - 2020-07-19
|
|
11
11
|
|
|
12
12
|
### Fixed
|
|
13
13
|
|
impl/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rust-embed-impl"
|
|
3
|
-
version = "5.
|
|
3
|
+
version = "5.6.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.6.0"
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
## Documentation
|