[package]
edition = "2024"
name = "tix"
version = "0.1.2"
build = false
include = [
"Cargo.toml",
"README.md",
"tix_logo.svg",
"LICENSE-MIT",
"src/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "tix - cli alarm clock and timer with foreground and background modes"
documentation = "https://docs.rs/tix"
readme = "README.md"
keywords = [
"alarm",
"timer",
"cli",
"clock",
"reminder",
]
categories = [
"command-line-utilities",
"date-and-time",
]
license = "MIT"
[[bin]]
name = "tix"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
[dependencies.chrono-tz]
version = "0.10"
[dependencies.ctrlc]
version = "3.5"
[dependencies.humantime]
version = "2.3"
[dependencies.iana-time-zone]
version = "0.1"
[dependencies.libc]
version = "0.2"
[dependencies.rodio]
version = "0.22"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.toml]
version = "1.1"
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies.notify-rust]
version = "4.14"