[go: up one dir, main page]

petgraph 0.1.10

Graph data structure library. Provides graph types and graph algorithms.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: rust
sudo: false
matrix:
  include:
    - rust: stable
    - rust: beta
    - rust: nightly
    - rust: nightly
      env:
       - FEATURES='test'
       - BENCH=1
script:
  - |
      cargo build --verbose --features "$FEATURES"
      cargo test --verbose --features "$FEATURES"
      [ "$BENCH" != 1 ] || cargo bench --verbose --features "$FEATURES"
      cargo doc --verbose --features "$FEATURES"