working prototype

This commit is contained in:
Hermes Agent
2026-08-16 19:23:59 +00:00
commit ba530a7271
13 changed files with 6787 additions and 0 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "rogue-agenda"
version = "0.1.0"
edition = "2024"
description = "A category-driven personal information manager for the terminal"
license = "MIT"
[dependencies]
anyhow = "1.0"
chrono = { version = "0.4", features = ["clock"] }
clap = { version = "4.6", features = ["derive"] }
crossterm = "0.29"
ratatui = "0.30"
regex = "1.13"
rusqlite = "0.40"
[dev-dependencies]
tempfile = "3.27"
[profile.release]
lto = "thin"
strip = true