Skip to content

Commit 8dff9fc

Browse files
committedJun 10, 2020
init
0 parents  commit 8dff9fc

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
Cargo.lock

‎Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "webnut"
3+
version = "0.1.0"
4+
authors = ["Jakob Meier <inbox@jakobmeier.ch>"]
5+
edition = "2018"
6+
license = "MIT/Apache-2.0"
7+
readme = "README.md"
8+
9+
10+
[dependencies]

‎README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# webnut
2+
3+
A low-level utility library for managing loosely connected activities.

‎src/lib.rs

+7
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)
Please sign in to comment.