~repos /rust-embed

#rust#proc-macro#http

git clone https://pyrossh.dev/repos/rust-embed.git
Discussions: https://groups.google.com/g/rust-embed-devs

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


Files changed (1) hide show
  1. .travis.yml +5 -5
.travis.yml CHANGED
@@ -1,19 +1,19 @@
1
1
  language: rust
2
2
  sudo: false
3
3
  dist: trusty
4
+ rust:
5
+ - stable
6
+ - nightly
4
7
 
5
8
  cache:
6
9
  cargo: true
7
10
 
8
11
  matrix:
9
- include:
10
- - rust: stable
11
- - allow_failures:
12
+ allow_failures:
12
- - rust: nightly
13
+ - rust: nightly
13
14
 
14
15
  script:
15
16
  - |
16
- cargo clean
17
17
  cargo test --tests --lib
18
18
  cargo test --tests --lib --release
19
19
  cargo clean