~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.
3bee74ef
—
pyros2097 7 years ago
fix help message
- Cargo.lock +1 -1
- Cargo.toml +1 -1
- readme.md +1 -1
Cargo.lock
CHANGED
|
@@ -714,7 +714,7 @@ dependencies = [
|
|
|
714
714
|
|
|
715
715
|
[[package]]
|
|
716
716
|
name = "rust-embed"
|
|
717
|
-
version = "1.1.
|
|
717
|
+
version = "1.1.1"
|
|
718
718
|
dependencies = [
|
|
719
719
|
"fern 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
720
720
|
"log 0.4.1 (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 = "1.1.
|
|
3
|
+
version = "1.1.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"
|
readme.md
CHANGED
|
@@ -11,7 +11,7 @@ This is similar to [pony-embed](https://github.com/pyros2097/pony-embed).
|
|
|
11
11
|
|
|
12
12
|
```
|
|
13
13
|
[dependencies]
|
|
14
|
-
rust-embed="1.1.
|
|
14
|
+
rust-embed="1.1.1"
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
## Documentation
|