generated from PlexSheep/rs-base
24 lines
577 B
TOML
24 lines
577 B
TOML
[package]
|
|
name = "clock-tui"
|
|
version = "0.2.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"
|