Skip to content

Commit e4e5b83

Browse files
committed
initial commit
0 parents  commit e4e5b83

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[package]
2+
3+
name = "unicode-segmentation"
4+
version = "0.0.1"
5+
authors = ["kwantam <kwantam@gmail.com>"]
6+
7+
homepage = "https://github.com/unicode-rs/unicode-segmentation"
8+
repository = "https://github.com/unicode-rs/unicode-segmentation"
9+
documentation = "https://unicode-rs.github.io/unicode-segmentation/unicode-segmentation"
10+
11+
license = "MIT/Apache-2.0"
12+
keywords = ["text", "unicode", "grapheme", "word", "boundary", "boundaries", "segmentation"]
13+
readme = "README.md"
14+
description = """
15+
This crate provides Grapheme Cluster and Word boundaries
16+
according to Unicode Standard Annex #29 rules.
17+
"""
18+
19+
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)