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.


afca7d5pyros2097 2018-02-26T21:53:46+05:30
Create .travis.yml
Files changed (1) hide show
  1. .travis.yml +22 -0
.travis.yml ADDED
@@ -0,0 +1,22 @@
1
+ language: rust
2
+ sudo: false
3
+ dist: trusty
4
+
5
+ cache:
6
+ cargo: true
7
+
8
+ matrix:
9
+ include:
10
+ - rust: 1.21.0
11
+ - rust: stable
12
+ - rust: beta
13
+ - rust: nightly
14
+ allow_failures:
15
+ - rust: nightly
16
+ - rust: beta
17
+
18
+ script:
19
+ - |
20
+ cargo clean
21
+ cargo test --lib -- --nocapture
22
+ cargo test --lib --release -- --nocapture