From 3f03c93a2f91f4a83d87064ca1968576f6096783 Mon Sep 17 00:00:00 2001 From: kwantam Date: Mon, 13 Apr 2015 19:01:01 -0400 Subject: [PATCH] initial commit --- .gitignore | 3 +++ Cargo.toml | 20 ++++++++++++++++++++ src/lib.rs | 3 +++ 3 files changed, 26 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 src/lib.rs 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() { +}