8000 Initial commit · unicode-rs/unicode-script@a564826 · GitHub
[go: up one dir, main page]

Skip to content

Commit a564826

Browse files
committed
Initial commit
0 parents  commit a564826

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

Cargo.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "unicode-script"
3+
version = "0.1.0"
4+
authors = ["Manish Goregaokar <manishsmail@gmail.com>"]
5+
edition = "2018"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[features]
10+
with_std = []
11+
default_features = ["with_std"]
12+
13+
[dependencies]

src/lib.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#[cfg(test)]
2+
mod tests {
3+
#[test]
4+
fn it_works() {
5+
assert_eq!(2 + 2, 4);
6+
}
7+
}

0 commit comments

Comments
 (0)
0