~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.
510f9b10
—
pyros2097 6 years ago
bump libs version to 5.0.0 also
- Cargo.toml +2 -2
- impl/Cargo.toml +1 -1
Cargo.toml
CHANGED
|
@@ -12,8 +12,8 @@ authors = ["pyros2097 <pyros2097@gmail.com>"]
|
|
|
12
12
|
|
|
13
13
|
[dependencies]
|
|
14
14
|
walkdir = "2.2.7"
|
|
15
|
-
rust-embed-impl = { version = "
|
|
15
|
+
rust-embed-impl = { version = "5.0.0", path = "impl"}
|
|
16
|
-
rust-embed-utils = { version = "
|
|
16
|
+
rust-embed-utils = { version = "5.0.0", path = "utils"}
|
|
17
17
|
|
|
18
18
|
actix-web = { version = "0.7", optional = true }
|
|
19
19
|
mime_guess = { version = "2.0.0-alpha.6", optional = true }
|
impl/Cargo.toml
CHANGED
|
@@ -14,7 +14,7 @@ authors = ["pyros2097 <pyros2097@gmail.com>"]
|
|
|
14
14
|
proc-macro = true
|
|
15
15
|
|
|
16
16
|
[dependencies]
|
|
17
|
-
rust-embed-utils = { version = "
|
|
17
|
+
rust-embed-utils = { version = "5.0.0", path = "../utils"}
|
|
18
18
|
|
|
19
19
|
syn = "0.11"
|
|
20
20
|
quote = "0.3"
|