This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
crock/clock-tui/Cargo.toml
Jimmy d2daa965eb
add xtasks to generate man page and autocomplete files (#22)
* add xtasks to generate manpage and autocomplete files

* add alias for main pkg

* git ingore assets/gen
2022-09-04 21:13:56 +08:00

29 lines
683 B
TOML

[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 <race604@gmail.com>"]
# 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