[package]
edition = "2021"
name = "focuz"
version = "0.0.1"
authors = ["Shiyas <shiyasmohd.official@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight Beautiful Terminal Pomodoro Timer"
readme = "README.md"
keywords = [
"pomodoro",
"cli",
"tool",
"rust",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/shiyasmohd/focuz"
[lib]
name = "focuz"
path = "src/lib.rs"
[[bin]]
name = "focuz"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.colored]
version = "2.1"
[dependencies.crossterm]
version = "0.28"
[dependencies.rodio]
version = "0.19"
[dependencies.tokio]
version = "1.41"
features = ["full"]