[go: up one dir, main page]

http-service 0.3.1

Types and traits for standardizing async HTTP services
Documentation
language: rust
rust:
  - nightly-2019-08-21
cache: cargo

matrix:
  include:
  - name: cargo doc
    script: cargo doc --all --all-features --no-deps

  - name: cargo fmt
    before_script: rustup component add rustfmt
    script: cargo fmt --all -- --check

  - name: cargo clippy
    before_script: rustup component add clippy
    script: cargo clippy --all -- -D clippy::all

  - name: cargo build --no-default-features
    script:
      - cargo build --no-default-features --verbose
      - cargo build --all --verbose

  - name: cargo test
    script: cargo test --all --verbose