~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.


1ce92fa9 Peter John

5 years ago
Merge pull request #114 from pyros2097/renovate/rust-walkdir-2.x
Files changed (3) hide show
  1. Cargo.toml +1 -1
  2. impl/Cargo.toml +1 -1
  3. utils/Cargo.toml +1 -1
Cargo.toml CHANGED
@@ -32,7 +32,7 @@ path = "tests/interpolated_path.rs"
32
32
  required-features = ["interpolate-folder-path"]
33
33
 
34
34
  [dependencies]
35
- walkdir = "2.2.7"
35
+ walkdir = "2.3.1"
36
36
  rust-embed-impl = { version = "5.5.1", path = "impl"}
37
37
  rust-embed-utils = { version = "5.0.0", path = "utils"}
38
38
 
impl/Cargo.toml CHANGED
@@ -19,7 +19,7 @@ rust-embed-utils = { version = "5.0.0", path = "../utils"}
19
19
 
20
20
  syn = "1"
21
21
  quote = "1"
22
- walkdir = "2.2.7"
22
+ walkdir = "2.3.1"
23
23
 
24
24
  [dependencies.shellexpand]
25
25
  version = "2"
utils/Cargo.toml CHANGED
@@ -12,7 +12,7 @@ authors = ["pyros2097 <pyros2097@gmail.com>"]
12
12
  edition = "2018"
13
13
 
14
14
  [dependencies]
15
- walkdir = "2.2.7"
15
+ walkdir = "2.3.1"
16
16
 
17
17
  [features]
18
18
  debug-embed = []