crock/Cargo.toml

35 lines
849 B
TOML
Raw Permalink Normal View History

2024-03-04 15:14:28 +01:00
[package]
name = "crock"
2024-09-03 19:13:28 +02:00
version = "0.3.0"
2024-03-04 15:14:28 +01:00
edition = "2021"
2024-07-09 13:22:18 +02:00
publish = true
2024-03-04 15:14:28 +01:00
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT"
description = "clock tui"
readme = "README.md"
homepage = "https://git.cscherr.de/PlexSheep/crock"
repository = "https://git.cscherr.de/PlexSheep/crock"
keywords = ["time", "clock", "tui"]
2024-07-09 13:41:25 +02:00
categories = ["date-and-time"]
2024-03-04 15:14:28 +01:00
2024-07-12 19:14:12 +02:00
[features]
default = ["desktop", "sound"]
desktop = ["dep:notify-rust"]
sound = ["dep:rodio"]
2024-03-04 15:14:28 +01:00
[dependencies]
anyhow = "1.0.86"
2024-07-09 11:58:12 +02:00
chrono = "0.4.38"
2024-07-19 10:16:22 +02:00
human-panic = "2.0.0"
2024-07-12 19:14:12 +02:00
humantime = "2.1.0"
2024-07-09 20:00:52 +02:00
libpt = { version = "0.6.0", features = ["cli"] }
2024-07-12 19:14:12 +02:00
notify-rust = { version = "4.11.0", default-features = false, features = [
"d",
], optional = true }
2024-07-09 11:58:12 +02:00
ratatui = "0.27.0"
2024-07-12 19:14:12 +02:00
rodio = { version = "0.19.0", optional = true, default-features = false, features = [
"mp3",
] }
2024-07-09 12:34:15 +02:00
tui-big-text = "0.4.5"