-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 1.1 KB
/
Cargo.toml
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
40
41
42
43
[package]
name = "timer-cli"
description = "Simple countdown terminal alarm"
authors = ["Pando85 <pando855@gmail.com>"]
version = "0.8.2"
edition = "2021"
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.28"
glob = "0.3"
regex = "1.10"
rodio = { version = "0.20", features = ["vorbis"] }
signal-hook = "0.3"
tailcall = "1.0"
time = { version = "0.3", features = ["formatting", "local-offset", "parsing"] }
# beep
libc = "0.2"
nix = { version = "0.29", features = ["ioctl"] }
[dev-dependencies]
time = { version = "*", features = ["macros"] }
[dev-dependencies.cargo-husky]
version = "1.5"
default-features = false # Disable features which are enabled by default
features = ["user-hooks"]
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"
strip = "symbols"