rust-embed v8.11.0

#rust#proc-macro#http

git clone https://git.pyrossh.dev/rust-embed

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


f487463Liran Piade 2025-01-04T18:29:34+10:00
Revert irrelevant change to readme
Files changed (1) hide show
  1. readme.md +1 -1
readme.md CHANGED
@@ -121,7 +121,7 @@ This will pull the `foo` directory relative to your `Cargo.toml` file.
121
121
  Compress each file when embedding into the binary. Compression is done via [`include-flate`].
122
122
 
123
123
  ### `include-exclude`
124
- Filter files to be embedded with multiple `#[include = "*.txt"]` and `#[exclude = "*.jpg"]` attributes.
124
+ Filter files to be embedded with multiple `#[include = "*.txt"]` and `#[exclude = "*.jpg"]` attributes.
125
125
  Matching is done on relative file paths, via [`globset`].
126
126
  `exclude` attributes have higher priority than `include` attributes.
127
127
  Example: