diff --git a/libautobar/Cargo.toml b/libautobar/Cargo.toml new file mode 100644 index 0000000..bb4a64b --- /dev/null +++ b/libautobar/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "libautobar" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/libautobar/src/lib.rs b/libautobar/src/lib.rs new file mode 100644 index 0000000..1b4a90c --- /dev/null +++ b/libautobar/src/lib.rs @@ -0,0 +1,8 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + let result = 2 + 2; + assert_eq!(result, 4); + } +}