[package]
authors = ["Zexin Yuan <aim@yzx9.xyz>"]
name = "aimcal-cli"
version = "0.1.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 = { version = "0.1.2", path = "../core" }
chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5", features = ["cargo", "derive"] }
clap_complete = "4.5"
clap_complete_nushell = "4.5"
colored = "3.0.0"
dirs = "6.0.0"
env_logger = "0.11"
log = "0.4"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.141"
tokio = { version = "1", features = ["fs", "macros", "rt-multi-thread"] }
toml = "0.8"
unicode-width = "0.2"
[target.'cfg(unix)'.dependencies]
xdg = "3.0.0"