~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.
b05f90c3
—
pyros2097 7 years ago
release 0.5.1
- Cargo.lock +1 -1
- Cargo.toml +1 -4
- readme.md +1 -1
Cargo.lock
CHANGED
|
@@ -361,7 +361,7 @@ dependencies = [
|
|
|
361
361
|
|
|
362
362
|
[[package]]
|
|
363
363
|
name = "rust-embed"
|
|
364
|
-
version = "0.5.
|
|
364
|
+
version = "0.5.1"
|
|
365
365
|
dependencies = [
|
|
366
366
|
"log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
367
367
|
"rocket 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rust-embed"
|
|
3
|
-
version = "0.5.
|
|
3
|
+
version = "0.5.1"
|
|
4
4
|
description = "Rust Marco 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"
|
|
@@ -10,9 +10,6 @@ keywords = ["http", "rocket", "static", "web", "server"]
|
|
|
10
10
|
categories = ["web-programming::http-server"]
|
|
11
11
|
authors = ["pyros2097 <pyros2097@gmail.com>"]
|
|
12
12
|
|
|
13
|
-
[lib]
|
|
14
|
-
plugin = true
|
|
15
|
-
|
|
16
13
|
[dependencies]
|
|
17
14
|
log = "0.4"
|
|
18
15
|
walkdir = "2.1.4"
|
readme.md
CHANGED
|
@@ -19,7 +19,7 @@ these are macros which generate code at compile time for only files.
|
|
|
19
19
|
|
|
20
20
|
```
|
|
21
21
|
[dependencies]
|
|
22
|
-
rust-embed="0.5.
|
|
22
|
+
rust-embed="0.5.1"
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## Documentation
|