webmanifest 1.0.3

Create a manifest.webmanifest file
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
language: rust
rust:
  - stable

before_script: |
  rustup component add rustfmt-preview &&
  rustup component add clippy-preview
script: |
  cargo fmt -- --check &&
  cargo clippy -- -D clippy &&
  cargo build --verbose &&
  cargo test  --verbose
cache: cargo