~repos /rust-embed

#rust#proc-macro#http

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.


925dda79 Peter

6 years ago
Merge pull request #57 from pyros2097/renovate/rust-walkdir-2.x
Files changed (2) hide show
  1. Cargo.toml +1 -1
  2. impl/Cargo.toml +1 -1
Cargo.toml CHANGED
@@ -11,7 +11,7 @@ categories = ["web-programming::http-server"]
11
11
  authors = ["pyros2097 <pyros2097@gmail.com>"]
12
12
 
13
13
  [dependencies]
14
- walkdir = "2.1.4"
14
+ walkdir = "2.2.7"
15
15
  rust-embed-impl = { version = "4.3.0", path = "impl"}
16
16
 
17
17
  actix-web = { version = "0.7", optional = true }
impl/Cargo.toml CHANGED
@@ -16,7 +16,7 @@ proc-macro = true
16
16
  [dependencies]
17
17
  syn = "0.11"
18
18
  quote = "0.3"
19
- walkdir = "2.1.4"
19
+ walkdir = "2.2.7"
20
20
 
21
21
  [features]
22
22
  debug-embed = []