We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit a6f4e84Copy full SHA for a6f4e84
.gitignore
@@ -0,0 +1,2 @@
1
+/target
2
+Cargo.lock
Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "bstmap"
3
+version = "0.1.0"
4
+authors = ["Sunjay Varma <varma.sunjay@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
+[dependencies]
src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}
0 commit comments