We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 8dff9fcCopy full SHA for 8dff9fc
.gitignore
@@ -0,0 +1,2 @@
1
+/target
2
+Cargo.lock
Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+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
@@ -0,0 +1,3 @@
+# webnut
+A low-level utility library for managing loosely connected activities.
src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}
0 commit comments