2020-04-13 23:22:31 +00:00
|
|
|
[package]
|
|
|
|
name = "soundfx-rs"
|
2023-03-23 13:32:29 +00:00
|
|
|
description = "Discord bot for custom sound effects and soundboards"
|
|
|
|
license = "AGPL-3.0-only"
|
2024-07-15 15:48:40 +00:00
|
|
|
version = "1.5.18"
|
2021-01-22 17:19:57 +00:00
|
|
|
authors = ["jellywx <judesouthworth@pm.me>"]
|
2020-04-13 23:22:31 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-18 19:06:18 +00:00
|
|
|
songbird = { version = "0.4", features = ["builtin-queue"] }
|
|
|
|
poise = "0.6.1-rc1"
|
2023-12-20 17:12:57 +00:00
|
|
|
sqlx = { version = "0.7.3", default-features = false, features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "migrate"] }
|
|
|
|
tokio = { version = "1", features = ["fs", "process", "io-util", "rt-multi-thread"] }
|
2020-10-24 10:15:17 +00:00
|
|
|
lazy_static = "1.4"
|
2024-07-15 15:48:40 +00:00
|
|
|
reqwest = "0.12"
|
|
|
|
env_logger = "0.11"
|
2023-12-18 19:06:18 +00:00
|
|
|
regex = "1.10"
|
2021-01-26 01:32:43 +00:00
|
|
|
log = "0.4"
|
2021-03-15 22:05:14 +00:00
|
|
|
serde_json = "1.0"
|
2024-07-15 15:48:40 +00:00
|
|
|
dashmap = "6.0"
|
2022-09-13 11:37:50 +00:00
|
|
|
serde = "1.0"
|
2023-03-23 19:24:43 +00:00
|
|
|
dotenv = "0.15.0"
|
2023-10-21 20:33:50 +00:00
|
|
|
prometheus = { version = "0.13.3", optional = true }
|
2023-12-20 17:12:57 +00:00
|
|
|
axum = { version = "0.7.2", optional = true }
|
2023-10-21 22:45:42 +00:00
|
|
|
|
2023-12-18 19:06:18 +00:00
|
|
|
[dependencies.symphonia]
|
|
|
|
version = "0.5"
|
|
|
|
features = ["ogg"]
|
|
|
|
|
2023-10-21 22:45:42 +00:00
|
|
|
[features]
|
|
|
|
metrics = ["dep:prometheus", "dep:axum"]
|
2022-05-05 08:55:44 +00:00
|
|
|
|
2023-03-23 11:38:53 +00:00
|
|
|
[package.metadata.deb]
|
2023-10-22 09:39:12 +00:00
|
|
|
features = ["metrics"]
|
2023-03-23 13:32:29 +00:00
|
|
|
depends = "$auto, ffmpeg"
|
|
|
|
suggests = "mysql-server-8.0"
|
|
|
|
maintainer-scripts = "debian"
|
|
|
|
assets = [
|
|
|
|
["target/release/soundfx-rs", "usr/bin/soundfx-rs", "755"],
|
2023-07-09 12:19:18 +00:00
|
|
|
["conf/default.env", "etc/soundfx-rs/config.env", "600"]
|
|
|
|
]
|
|
|
|
conf-files = [
|
|
|
|
"/etc/soundfx-rs/config.env",
|
2023-03-23 13:32:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[package.metadata.deb.systemd-units]
|
|
|
|
unit-scripts = "systemd"
|
|
|
|
start = false
|