unicode-normalization 0.1.24

This crate provides functions for normalization of Unicode strings, including Canonical and Compatible Decomposition and Recomposition, as described in Unicode Standard Annex #15.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: rust
rust:
  - 1.36.0
  - stable
  - nightly
sudo: false
script:
  - cargo build --verbose
  - cargo test --verbose
  - cargo test --verbose --no-default-features
  - cargo package
  - cd target/package/unicode-normalization-*
  - cargo test --verbose
  - cargo test --verbose --no-default-features
notifications:
  email:
    on_success: never