cvss 0.3.0

Common Vulnerability Scoring System parser/serializer
Documentation
language: rust
cache: cargo

branches:
  only:
    - master

rust:
  - 1.35.0
  - stable

os:
  - linux
  - osx
  - windows

env:
  global:
    - RUST_BACKTRACE=1
    - RUSTFLAGS="-D warnings"

matrix:
  fast_finish: true
  allow_failures:
    # Travis CI's Windows tier is presently beta (slow / unreliable)
    - os: windows

install:
  - rustup component add rustfmt
  - rustup component add clippy

script:
  - cargo fmt --all -- --check
  - cargo clippy --all
  - cargo test --release
  - cargo test --all-features --release
  - cargo doc --no-deps