unicode-normalization-alignments 0.1.12

This crate provides functions for normalization of Unicode strings, including Canonical and Compatible Decomposition and Recomposition, as described in Unicode Standard Annex #15.
Documentation
  • Coverage
  • 100%
    32 out of 32 items documented1 out of 7 items with examples
  • Size
  • Source code size: 510.89 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 18.66 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • n1t0/unicode-normalization
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • n1t0

unicode-normalization-alignments

Build Status Docs

This is a forked version of unicode-normalization wich provides alignment information during normalization.

Unicode character composition and decomposition utilities as described in Unicode Standard Annex #15.

This crate requires Rust 1.36+.

extern crate unicode_normalization_alignments;

use unicode_normalization_alignments::char::compose;
use unicode_normalization_alignments::UnicodeNormalization;

fn main() {
	assert_eq!(compose('A','\u{30a}'), Some('Å'));

	let s = "ÅΩ";
	let c = s.nfc().map(|(c, diff)| {
		match diff {
			0 => println!("Nothing changed here"),
			1 => println!("New character"),
			_ => println!("{} characters were removed", diff),
		}

		c
	}).collect::<String>();
	assert_eq!(c, "ÅΩ");
}

crates.io

You can use this package in your project by adding the following to your Cargo.toml:

[dependencies]
unicode-normalization-alignments = "0.1.12"