commit 3f03c93a2f91f4a83d87064ca1968576f6096783 Author: kwantam Date: Mon Apr 13 19:01:01 2015 -0400 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5cdcdba --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +target +Cargo.lock +scripts/tmp diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c6bd444 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] + +name = "unicode-normalization" +version = "0.0.1" +authors = ["kwantam "] + +homepage = "https://github.com/unicode-rs/unicode-normalization" +repository = "https://github.com/unicode-rs/unicode-normalization" +documentation = "http://unicode-rs.github.io/unicode-normalization/unicode-normalization" + +license = "MIT/Apache 2.0" +keywords = ["text", "unicode", "normalization", "nfkc", "nfc", "nfkd", "nfd"] +readme = "README.md" +description = """ +This crate provides functions for normalization of +Unicode strings, including Canonical and Compatible +Decomposition and Recomposition. +""" + +exclude = [ "target/*", "Cargo.lock", "scripts/tmp" ] diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..a93251b --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,3 @@ +#[test] +fn it_works() { +}