[go: up one dir, main page]

lipsum 0.4.0

Lipsum is a lorem ipsum text generation library. Use this if you need some filler text for your application. The text is generated using a simple Markov chain, which you can also instantiate to generate your own pieces of pseudo-random text.
Documentation
language: rust

rust:
  - 1.6.0
  - stable
  - beta
  - nightly

cache: cargo

before_install:
  - |
      if [[ "$TRAVIS_RUST_VERSION" == "1.6.0" ]]; then
          echo "Old Rust detected, removing version-sync dependency"
          sed -i "/^version-sync =/d" Cargo.toml
          rm "tests/version-numbers.rs"
      fi

matrix:
  allow_failures:
    - rust: nightly