8000 initial commit · froydnj/unicode-normalization@3f03c93 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3f03c93

Browse files
committed
initial commit
0 parents  commit 3f03c93

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
target
2+
Cargo.lock
3+
scripts/tmp

Cargo.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[package]
2+
3+
name = "unicode-normalization"
4+
version = "0.0.1"
5+
authors = ["kwantam <kwantam@gmail.com>"]
6+
7+
homepage = "https://github.com/unicode-rs/unicode-normalization"
8+
repository = "https://github.com/unicode-rs/unicode-normalization"
9+
documentation = "http://unicode-rs.github.io/unicode-normalization/unicode-normalization"
10+
11+
license = "MIT/Apache 2.0"
12+
keywords = ["text", "unicode", "normalization", "nfkc", "nfc", "nfkd", "nfd"]
13+
readme = "README.md"
14+
description = """
15+
This crate provides functions for normalization of
16+
Unicode strings, including Canonical and Compatible
17+
Decomposition and Recomposition.
18+
"""
19+
20+
exclude = [ "target/*", "Cargo.lock", "scripts/tmp" ]

src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#[test]
2+
fn it_works() {
3+
}

0 commit comments

Comments
 (0)
0