~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.
7ae3cac1
—
Peter John 3 years ago
v6.4.1 update sha2 dependency
- Cargo.toml +3 -3
- changelog.md +4 -0
- impl/Cargo.toml +2 -2
- readme.md +1 -1
- utils/Cargo.toml +2 -2
Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rust-embed"
|
|
3
|
-
version = "6.4.
|
|
3
|
+
version = "6.4.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"
|
|
@@ -53,8 +53,8 @@ required-features = ["include-exclude"]
|
|
|
53
53
|
|
|
54
54
|
[dependencies]
|
|
55
55
|
walkdir = "2.3.1"
|
|
56
|
-
rust-embed-impl = { version = "6.
|
|
56
|
+
rust-embed-impl = { version = "6.3.0", path = "impl"}
|
|
57
|
-
rust-embed-utils = { version = "7.
|
|
57
|
+
rust-embed-utils = { version = "7.3.0", path = "utils"}
|
|
58
58
|
|
|
59
59
|
include-flate = { version = "0.1", optional = true, features = ["stable"] }
|
|
60
60
|
actix-web = { version = "4", optional = true }
|
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.4.1] - 2022-09-13
|
|
11
|
+
|
|
12
|
+
- Update sha2 dependency version in utils crate [#186](https://github.com/pyrossh/rust-embed/issues/186)
|
|
13
|
+
|
|
10
14
|
## [6.4.0] - 2022-04-15
|
|
11
15
|
|
|
12
16
|
- Order files by filename [#171](https://github.com/pyros2097/rust-embed/issues/171). Thanks to [apognu](https://github.com/apognu)
|
impl/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rust-embed-impl"
|
|
3
|
-
version = "6.
|
|
3
|
+
version = "6.3.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"
|
|
@@ -15,7 +15,7 @@ edition = "2018"
|
|
|
15
15
|
proc-macro = true
|
|
16
16
|
|
|
17
17
|
[dependencies]
|
|
18
|
-
rust-embed-utils = { version = "7.
|
|
18
|
+
rust-embed-utils = { version = "7.3.0", path = "../utils"}
|
|
19
19
|
|
|
20
20
|
syn = { version = "1", default-features = false, features = ["derive", "parsing", "proc-macro"] }
|
|
21
21
|
quote = "1"
|
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.4.
|
|
11
|
+
rust-embed="6.4.1"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
## Documentation
|
utils/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rust-embed-utils"
|
|
3
|
-
version = "7.
|
|
3
|
+
version = "7.3.0"
|
|
4
4
|
description = "Utilities for rust-embed"
|
|
5
5
|
readme = "readme.md"
|
|
6
6
|
documentation = "https://docs.rs/rust-embed"
|
|
@@ -13,7 +13,7 @@ edition = "2018"
|
|
|
13
13
|
|
|
14
14
|
[dependencies]
|
|
15
15
|
walkdir = "2.3.1"
|
|
16
|
-
sha2 = "0.10"
|
|
16
|
+
sha2 = "0.10.5"
|
|
17
17
|
|
|
18
18
|
[dependencies.globset]
|
|
19
19
|
version = "0.4.8"
|