rusttype 0.6.0

A pure Rust alternative to libraries like FreeType. RustType provides an API for loading, querying and rasterising TrueType fonts. It also provides an implementation of a dynamic GPU glyph cache for hardware font rendering.
Documentation
language: rust
cache:
  cargo: true
rust:
- stable
- nightly
env:
- RUST_BACKTRACE=full
matrix:
  fast_finish: true
script: |
  #!/bin/bash
  cargo build --verbose
  cargo test --verbose
  cargo build --verbose --features 'gpu_cache'
  if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then
    # test nightly-only bench code
    cargo test --all-features
  else
    cargo test --features 'gpu_cache'
  fi