string_cache 0.8.1

A string interning library for Rust, developed as part of the Servo project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sudo: false
language: rust
rust:
  - 1.36.0
  - nightly
  - beta
  - stable
os:
  - linux
script:
  - cargo build --no-default-features
  - cargo build
  - cargo test --all
  - "cd string-cache-codegen && cargo build && cd .."
  - "if [ $TRAVIS_RUST_VERSION = nightly ]; then cd integration-tests && cargo test --features unstable && cd ..; fi"