[go: up one dir, main page]

fluent 0.1.1

A localization library designed to unleash the entire expressive power of natural language translations.
Documentation
sudo: false
language: rust
cache: cargo
rust:
  - nightly
# Dependencies of kcov, used by coverage
addons:
  apt:
    packages:
      - libcurl4-openssl-dev
      - libelf-dev
      - libdw-dev
      - binutils-dev
      - cmake
    sources:
      - kalakris-cmake

before_script:
  - |
      cargo install --force cargo-travis &&
      export PATH=$HOME/.cargo/bin:$PATH

# the main build
script:
  - |
      cargo build &&
      cargo test &&
      cargo doc

after_success:
# measure code coverage and upload to coveralls.io
  - cargo coveralls