string_cache 0.7.5

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
16
17
18
sudo: false
language: rust
rust:
  - nightly
  - beta
  - stable
  - 1.31.0
os:
  - linux
script:
  - cargo build
  - cargo test
  - cargo test --features log-events
  - "if [ $TRAVIS_RUST_VERSION = nightly ]; then cargo test --features unstable; fi"
  - cargo test
  - "cd string-cache-codegen/ && cargo build && cd .."
  - "cd examples/event-log/ && cargo build && cd ../.."
  - "cd examples/summarize-events/ && cargo build && cd ../.."