27 lines
552 B
TOML
27 lines
552 B
TOML
[package]
|
|
name = "rogue-agenda"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "A category-driven personal information manager for the terminal"
|
|
license = "MIT"
|
|
|
|
[lints.rust]
|
|
# Keep compiler warnings fatal for every Cargo entry point, not only CI.
|
|
warnings = "deny"
|
|
|
|
[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
|