~repos /rust-embed

#rust#proc-macro#http

git clone https://pyrossh.dev/repos/rust-embed.git
Discussions: https://groups.google.com/g/rust-embed-devs

rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.


Files changed (2) hide show
  1. Cargo.lock +1 -1
  2. Cargo.toml +2 -2
Cargo.lock CHANGED
@@ -683,7 +683,7 @@ dependencies = [
683
683
 
684
684
  [[package]]
685
685
  name = "rust-embed"
686
- version = "0.3.0"
686
+ version = "0.3.2"
687
687
  dependencies = [
688
688
  "actix-web 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
689
689
  "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 = "0.3.1"
3
+ version = "0.3.2"
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"
@@ -11,7 +11,7 @@ categories = ["web-programming::http-server"]
11
11
  authors = ["pyros2097 <pyros2097@gmail.com>"]
12
12
 
13
13
  [lib]
14
- name = "rust-embed"
14
+ name = "rust_embed"
15
15
  plugin = true
16
16
 
17
17
  [dependencies]