Compare commits

...

2 commits

Author SHA1 Message Date
4de8e35f41 Merge branch 'devel'
Some checks failed
cargo devel CI / cargo CI (push) Failing after 1m48s
2024-07-12 19:05:53 +02:00
35e58ffea8 chore: bump version
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m16s
2024-07-10 01:41:11 +02:00

View file

@ -1,6 +1,6 @@
[package] [package]
name = "crock" name = "crock"
version = "0.2.0" version = "0.1.5"
edition = "2021" edition = "2021"
publish = true publish = true
authors = ["Christoph J. Scherr <software@cscherr.de>"] authors = ["Christoph J. Scherr <software@cscherr.de>"]
@ -12,22 +12,10 @@ repository = "https://git.cscherr.de/PlexSheep/crock"
keywords = ["time", "clock", "tui"] keywords = ["time", "clock", "tui"]
categories = ["date-and-time"] categories = ["date-and-time"]
[features]
default = ["desktop", "sound"]
desktop = ["dep:notify-rust"]
sound = ["dep:rodio"]
[dependencies] [dependencies]
anyhow = "1.0.86" anyhow = "1.0.86"
chrono = "0.4.38" chrono = "0.4.38"
humantime = "2.1.0"
libpt = { version = "0.6.0", features = ["cli"] } libpt = { version = "0.6.0", features = ["cli"] }
notify-rust = { version = "4.11.0", default-features = false, features = [
"d",
], optional = true }
ratatui = "0.27.0" ratatui = "0.27.0"
rodio = { version = "0.19.0", optional = true, default-features = false, features = [
"mp3",
] }
tui-big-text = "0.4.5" tui-big-text = "0.4.5"