Skip to content

Commit 50c39a8

Browse files
committed
Initial commit
0 parents  commit 50c39a8

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-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+
**/*.rs.bk
3+
Cargo.lock

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[package]
2+
name = "stringprep"
3+
version = "0.1.0"
4+
authors = ["Steven Fackler <sfackler@gmail.com>"]
5+
6+
[dependencies]

src/lib.rs

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

0 commit comments

Comments
 (0)