soundboard/Cargo.toml

44 lines
1.0 KiB
TOML

[package]
name = "soundboard"
version = "0.1.0"
edition = "2021"
default-run = "soundboard"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.6.18"
axum-template = { version = "0.19.0", features = ["minijinja"] }
cpal = "0.15.2"
dotenvy = "0.15.7"
enigo = "0.1.3"
log = "0.4.20"
minijinja = { version = "1.0.3", features = ["loader"] }
minimp3 = "0.5.1"
mp3-duration = "0.1.10"
regex = "1.9.0"
rodio = "0.18.1"
serde = { version = "1.0.171", features = ["derive"] }
tokio = { version = "1.29.1", features = ["full"] }
xxhash-rust = { version = "0.8.6", features = ["xxh3", "const_xxh3"] }
strinto = { path = "./strinto" }
eframe = "0.27.2"
tray-item = "0.10"
winit = "0.25"
once_cell = "1.19.0"
tray-icon = "0.14.3"
raw-window-handle = "0.6.2"
[build-dependencies]
embed-resource = "2.3"
[dependencies.windows]
version = "0.56.0"
features = [
"Data_Xml_Dom",
"Win32_Foundation",
"Win32_Security",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
]