From d2a8219d66398ce5bf842cb10e4ae2b87946923f Mon Sep 17 00:00:00 2001 From: Trollwut Date: Tue, 1 Dec 2020 16:26:01 +0100 Subject: [PATCH] feat: add lib and cli files --- Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..4fc9bcc --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "clockcalc" +version = "0.0.1" +authors = ["Trollwut "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[lib] +name = "clockcalclib" +path = "src/lib.rs" + +[[bin]] +name = "clockcalc-cli" +path = "src/cli.rs"