byteorder 1.0.0

Library for reading/writing numbers in big-endian and little-endian.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: rust
rust:
  - 1.12.0
  - stable
  - beta
  - nightly
script:
  - cargo build --verbose
  - cargo doc
  - cargo test --verbose
  - cargo test --verbose --no-default-features --lib
  - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
      cargo bench --verbose;
      cargo bench --verbose --no-default-features;
    fi