[go: up one dir, main page]

route-recognizer 0.2.0

Recognizes URL patterns with support for dynamic and glob segments
Documentation
language: rust
rust:
- stable
- beta
- nightly

script:
- cargo test

matrix:
  include:
  - name: cargo fmt
    install:
    - rustup component add rustfmt
    script:
    - cargo fmt --all -- --check

  - name: cargo clippy
    install:
    - rustup component add clippy
    script:
    - cargo clippy --lib --tests -- -Dwarnings

  - name: cargo +nightly bench
    rust: nightly
    script:
    - cargo bench