-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 980 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "timer-cli"
description = "Simple countdown terminal alarm"
authors = ["Pando85 <pando855@gmail.com>"]
version = "0.11.0"
edition = "2024"
license-file = "./LICENSE"
homepage = "https://github.com/pando85/timer"
categories = ["command-line-utilities"]
keywords = ["timer", "pomodoro", "countdown", "cli", "utility"]
repository = "https://github.com/pando85/timer"
readme = "./README.md"
[[bin]]
name = "timer"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["std", "color", "derive", "cargo"] }
crossterm = "0.29"
glob = "0.3"
regex = "1.10"
rodio = { version = "0.22", features = ["vorbis"] }
signal-hook = "0.4"
tailcall = "1.0"
time = { version = "0.3", features = ["formatting", "local-offset", "parsing"] }
# beep
libc = "0.2"
nix = { version = "0.31", features = ["ioctl"] }
[dev-dependencies]
time = { version = "0.3", features = ["macros"] }
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"
strip = "symbols"