-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (29 loc) · 849 Bytes
/
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
[package]
name = "wooshh"
version = "0.3.0"
edition = "2021"
authors = ["Aniket Patel <velvety.03-wonders@icloud.com>"]
license = "MIT"
description = "A tool to play sound when cmd run successfully"
readme = "README.md"
homepage = "https://github.com/mehuaniket/wooshh"
repository = "https://github.com/mehuaniket/wooshh"
keywords = ["cli", "time", "sound"]
categories = ["command-line-utilities"]
[[bin]]
name = "wooshh"
path = "src/main.rs"
[dependencies]
clap = { version = "4.4.1", features = ["derive"] }
humantime = "2.1.0"
rusty_audio = "1.4.1"
openssl-sys = { version = "0.9", features = ["vendored"] }
requestty = "0.5"
serde = { version = "1.0", features = ["derive"] }
toml = "0.7"
reqwest = { version = "0.11.20", features = ["blocking"] }
[dev-dependencies]
rusty-hook = "0.11"
[profile.release]
opt-level = "z"
codegen-units = 1