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/Cargo.toml
2022-08-05 09:32:16 +08:00

24 lines
577 B
TOML

[package]
name = "clock-tui"
version = "0.3.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"
[[bin]]
bench = false
path = "src/main.rs"
name = "tclock"