quick-xml 0.17.2

High performance xml reader and writer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: rust
cache: cargo
sudo: false

rust:
  - nightly
  - beta
  - stable

before_script:
  - export PATH=$HOME/.cargo/bin:$HOME/.local/bin:$PATH
  - if [[ $(rustup show active-toolchain) == stable* ]]; then rustup component add rustfmt; fi;

script:
  - if [[ $(rustup show active-toolchain) == stable* ]]; then cargo fmt -- --check; fi;
  - cargo test --all-features
  - cargo test --no-default-features