[go: up one dir, main page]

rsa 0.1.3

Pure Rust RSA implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: rust

matrix:
  include:
    - rust: 1.31.0
    - rust: stable
    - rust: nightly
      env: TRAVIS_NIGHTLY=true

script:
  - if [[ "$TRAVIS_NIGHTLY" == "true" ]]; then cargo test --verbose --all-features; fi
  - if [[ "$TRAVIS_NIGHTLY" == "true" ]]; then cargo bench --verbose --all-features --no-run; fi
  - if [[ "$TRAVIS_NIGHTLY" != "true" ]]; then cargo test --verbose; fi

cache: cargo