We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 18d22e1Copy full SHA for 18d22e1
.gitignore
@@ -0,0 +1,4 @@
1
+
2
+/target/
3
+**/*.rs.bk
4
+Cargo.lock
Cargo.toml
@@ -0,0 +1,12 @@
+[package]
+authors = ["Garrett Berg <[email protected]>"]
+name = "ergo_prelude"
+version = "0.1.0"
5
6
+[dependencies]
7
+failure = "0.1.1"
8
+itertools = "0.7.6"
9
+lazy_static = "1.0.0"
10
+maplit = "1.0.1"
11
+ordermap = "0.3.5"
12
+std_prelude = "0.2.11"
src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}
0 commit comments