[go: up one dir, main page]

encoding_rs 0.7.2

A Gecko-oriented implementation of the Encoding Standard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: rust
rust:
  - 1.15.0 # Earliest that's known to work
  - 1.19.0 # Firefox requirement
  - stable
  - beta
  - nightly
env:
  - RUST_BACKTRACE=1
  - RUST_BACKTRACE=1 RUSTC_BOOTSTRAP=1
script:
  - if [[ $RUSTC_BOOTSTRAP ]]; then cargo test --verbose --features 'simd-accel no-static-ideograph-encoder-tables serde'; fi
  - if [[ -z $RUSTC_BOOTSTRAP ]]; then cargo test --verbose; fi
#matrix:
#  allow_failures:
#    - rust: nightly