From 32b9cfe8e430c152e1e12310aacc893f2c3aa0e1 Mon Sep 17 00:00:00 2001 From: Shivendra Mishra Date: Thu, 26 Feb 2026 13:37:32 +0530 Subject: [PATCH] feat: added binary crate --- Cargo.lock | 4 ++++ Cargo.toml | 2 +- checkgit/Cargo.toml | 6 ++++++ checkgit/src/main.rs | 3 +++ 4 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 checkgit/Cargo.toml create mode 100644 checkgit/src/main.rs diff --git a/Cargo.lock b/Cargo.lock index 15a99f6..5d0b003 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -84,6 +84,10 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" +[[package]] +name = "checkgit" +version = "0.1.0" + [[package]] name = "checkgit_core" version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index e1a63ab..954efd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,2 @@ [workspace] -members = [ "checkgit_core","checkgit_tui"] +members = [ "checkgit", "checkgit_core","checkgit_tui"] diff --git a/checkgit/Cargo.toml b/checkgit/Cargo.toml new file mode 100644 index 0000000..fcdc6d9 --- /dev/null +++ b/checkgit/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "checkgit" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/checkgit/src/main.rs b/checkgit/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/checkgit/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}