aimcal-cli 0.3.2

AIM - Analyze. Interact. Manage Your Time, with calendar support
Documentation
[package]
authors = ["Zexin Yuan <aim@yzx9.xyz>"]
name = "aimcal-cli"
version = "0.3.2"
license = "Apache-2.0"
edition = "2024"

description = "AIM - Analyze. Interact. Manage Your Time, with calendar support"
keywords = ["calendar", "time-management", "productivity"]
categories = ["command-line-interface", "date-and-time"]

documentation = "https://docs.rs/aimcal/"
homepage = "https://github.com/yzx9/aim"
repository = "https://github.com/yzx9/aim"
readme = "../README.md"

[[bin]]
name = "aim"
path = "src/main.rs"

[dependencies]
aimcal-core = { path = "../core", version = "0.3.2", default-features = false, features = [
  "clap",
] }
chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5", features = ["cargo", "color", "derive"] }
clap-num = "1.2.0"
clap_complete = "4.5"
clap_complete_nushell = "4.5"
colored = "3.0.0"
dirs = "6.0.0"
env_logger = "0.11"
futures = "0.3.31"
log = "0.4"
ratatui = "0.29.0"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1", features = ["fs", "macros", "rt-multi-thread"] }
toml = "0.9.4"
unicode-width = "0.2.0"

[target.'cfg(unix)'.dependencies]
xdg = "3.0.0"

[features]
default = ["sqlite"]

sqlite = ["aimcal-core/sqlite"]
sqlite-unbundled = ["aimcal-core/sqlite-unbundled"]