[package] name = "clock-tui" version = "0.4.0" edition = "2021" license = "MIT" description = "A clock app in terminal" homepage = "https://github.com/race604/clock-tui" repository = "https://github.com/race604/clock-tui" readme = "README.md" authors = ["Race604 "] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tui = "0.18.0" crossterm = "0.24" chrono = "0.4" clap = { version = "3.2.12", features = ["derive"] } regex = "1.6.0" chrono-tz = { version = "0.6.3", features = ["serde"] } [lib] name = "clock_tui" path = "src/lib.rs" [[bin]] name = "tclock" path = "src/bin/main.rs" bench = false