diff options
| author | Yuval Adam <_@yuv.al> | 2019-03-18 14:40:12 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2019-03-18 14:40:12 +0200 |
| commit | 704dccd997146524848d0fd3900fc9832a18a742 (patch) | |
| tree | 0e19c4b51fb67fd7aac5ea16d6d3f80962204991 | |
Initial cargo files
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | Cargo.toml | 7 | ||||
| -rw-r--r-- | src/lib.rs | 7 |
3 files changed, 17 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f88dba --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/target +**/*.rs.bk +Cargo.lock
\ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..19ded13 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "bchlib" +version = "0.1.0" +authors = ["Yuval Adam <_@yuv.al>"] +edition = "2018" + +[dependencies] diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..31e1bb2 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,7 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} |
