~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.
30689574
—
pyros2097 6 years ago
v4.5.0
- Cargo.toml +2 -2
- impl/Cargo.toml +1 -1
Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rust-embed"
|
|
3
|
-
version = "4.
|
|
3
|
+
version = "4.5.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"
|
|
@@ -12,7 +12,7 @@ authors = ["pyros2097 <pyros2097@gmail.com>"]
|
|
|
12
12
|
|
|
13
13
|
[dependencies]
|
|
14
14
|
walkdir = "2.2.7"
|
|
15
|
-
rust-embed-impl = { version = "4.
|
|
15
|
+
rust-embed-impl = { version = "4.5.0", path = "impl"}
|
|
16
16
|
|
|
17
17
|
actix-web = { version = "0.7", optional = true }
|
|
18
18
|
mime_guess = { version = "2.0.0-alpha.6", optional = true }
|
impl/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rust-embed-impl"
|
|
3
|
-
version = "4.
|
|
3
|
+
version = "4.5.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"
|