From 63e1f34778f94ed4bbf68a53869f2ac6780ff11b Mon Sep 17 00:00:00 2001 From: Elijah Voigt Date: Fri, 27 Mar 2026 22:02:07 -0700 Subject: [PATCH] fix: add explicit [lib]/[[bin]] sections to Cargo.toml for rust-analyzer Co-Authored-By: Claude Sonnet 4.6 --- Cargo.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 08baa01..aa4377d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,14 @@ name = "claudbg" version = "0.1.0" edition = "2024" +[lib] +name = "claudbg" +path = "src/lib.rs" + +[[bin]] +name = "claudbg" +path = "src/main.rs" + [dependencies] clap = { version = "4.6", features = ["derive"] } tokio = { version = "1.50", features = ["full"] }