initial commit

This commit is contained in:
kwantam
2015-04-13 19:01:01 -04:00
commit 3f03c93a2f
3 changed files with 26 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
target
Cargo.lock
scripts/tmp
+20
View File
@@ -0,0 +1,20 @@
[package]
name = "unicode-normalization"
version = "0.0.1"
authors = ["kwantam <kwantam@gmail.com>"]
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" ]
+3
View File
@@ -0,0 +1,3 @@
#[test]
fn it_works() {
}