openapiv3 0.5.0

This crate aims to provide data structures that represent the Open API v3 specification easily deserializable with serde.
Documentation
language: rust
cache: cargo

matrix:
  include:
  - rust: 1.49.0
    env: NAME=test
    script:
    - cargo test --all --verbose
  - rust: 1.49.0
    env: NAME=pretty
    before_script:
    - rustup component add rustfmt
    script:
    - cargo fmt -- --check
  - rust: 1.49.0
    env: NAME=petty
    before_script:
    - rustup component add clippy
    script:
    - cargo clippy --all --verbose

notifications:
  email:
    on_success: never