soundfx-bot/Cargo.toml

49 lines
1.2 KiB
TOML
Raw Normal View History

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"
2023-10-22 11:40:17 +00:00
version = "1.5.15"
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-03-23 11:38:53 +00:00
sqlx = { version = "0.5", default-features = false, features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "migrate"] }
2021-04-15 10:40:41 +00:00
tokio = { version = "1", features = ["fs", "process", "io-util"] }
lazy_static = "1.4"
2021-01-22 17:19:57 +00:00
reqwest = "0.11"
2023-03-23 11:38:53 +00:00
env_logger = "0.10"
2023-12-18 19:06:18 +00:00
regex = "1.10"
log = "0.4"
serde_json = "1.0"
2023-12-18 19:06:18 +00:00
dashmap = "5.5"
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-10-21 22:45:42 +00:00
axum = { version = "0.6.20", optional = true }
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