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


c7b12c89 Ryan Lopopolo

6 years ago
fixup test
Files changed (1) hide show
  1. tests/interpolated_path.rs +1 -1
tests/interpolated_path.rs CHANGED
@@ -3,7 +3,7 @@ extern crate rust_embed;
3
3
 
4
4
  /// Test doc comment
5
5
  #[derive(RustEmbed)]
6
- #[folder = "$CARGO_MANFEST_ROOT/examples/public/"]
6
+ #[folder = "$CARGO_MANIFEST_DIR/examples/public/"]
7
7
  struct Asset;
8
8
 
9
9
  #[test]