feat(wave1): Add Cargo.toml dependencies + create src/lib.rs scaffold [claudbg-yugb]
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>main
parent
b6740f0f9e
commit
3b62deb617
@ -1,11 +1,12 @@
|
||||
---
|
||||
# claudbg-yugb
|
||||
title: Add Cargo.toml dependencies
|
||||
status: todo
|
||||
status: completed
|
||||
type: task
|
||||
priority: normal
|
||||
created_at: 2026-03-27T19:38:56Z
|
||||
updated_at: 2026-03-27T19:38:56Z
|
||||
updated_at: 2026-03-28T04:09:48Z
|
||||
parent: claudbg-h7xu
|
||||
---
|
||||
|
||||
Add clap (derive feature), tokio (full), serde + serde_json, libsql, chrono, uuid, and a table rendering crate (comfy-table or tabled) to Cargo.toml.
|
||||
Added all required Cargo.toml dependencies (clap, tokio, serde, serde_json, libsql, chrono, uuid, thiserror, comfy-table). Created src/lib.rs with crate doc comment and placeholder commented-out pub mod declarations. All deps resolve successfully via cargo check.
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,19 @@
|
||||
//! claudbg — Claude Code session inspector library.
|
||||
|
||||
// pub mod cli;
|
||||
// pub mod commands;
|
||||
// pub mod db;
|
||||
// pub mod error;
|
||||
// pub mod models;
|
||||
// pub mod output;
|
||||
// pub mod util;
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
/// Verify the crate compiles and the lib entry point is reachable.
|
||||
#[test]
|
||||
fn lib_entry_point() {
|
||||
// Placeholder: ensures the test harness can find this crate.
|
||||
assert_eq!(1 + 1, 2);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue