b0bed6ab4c
Currently uses the UnixStream from the standard library
15 lines
326 B
YAML
15 lines
326 B
YAML
language: rust
|
|
sudo: required
|
|
rust:
|
|
- nightly
|
|
- beta
|
|
- 1.6.0
|
|
addons:
|
|
postgresql: 9.4
|
|
before_script:
|
|
- "./.travis/setup.sh"
|
|
script:
|
|
- cargo test
|
|
- cargo test --features "uuid rustc-serialize time unix_socket serde_json chrono openssl bit-vec eui48"
|
|
- (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --features nightly)
|