rust-embed 5.5.1

Rust Custom Derive Macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev
Documentation
language: rust
rust:
  - stable
  - nightly

cache:
  cargo: true

matrix:
  allow_failures:
   - rust: nightly

script:
  - cargo test --test lib
  - cargo test --test lib --features "debug-embed"
  - cargo test --test lib --release
  - cargo test --test lib --features "compression" --release
  - cargo test --test interpolated_path --features "interpolate-folder-path"
  - cargo test --test interpolated_path --features "interpolate-folder-path" --release
  - cargo build --example basic
  - cargo build --example basic --release
  - cargo build --example actix --features actix
  - cargo build --example actix --features actix --release
  - cargo build --example warp --features warp-ex
  - cargo build --example warp --features warp-ex --release