Skip to content

Commit 18d22e1

Browse files
committed
initial dependencies
0 parents  commit 18d22e1

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
/target/
3+
**/*.rs.bk
4+
Cargo.lock

Cargo.toml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[package]
2+
authors = ["Garrett Berg <[email protected]>"]
3+
name = "ergo_prelude"
4+
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

+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)