soundfx-bot/Cargo.toml

47 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-08-22 17:55:56 +00:00
version = "1.5.11"
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-04-09 16:35:40 +00:00
songbird = { version = "0.3", features = ["builtin-queue"] }
2023-07-09 12:24:39 +00:00
poise = "0.5.5"
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"
regex = "1.4"
log = "0.4"
serde_json = "1.0"
2022-07-31 13:56:38 +00:00
dashmap = "5.3"
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 }
[features]
metrics = ["dep:prometheus", "dep:axum"]
2022-05-05 08:55:44 +00:00
[patch."https://github.com/serenity-rs/serenity"]
2023-07-09 12:24:39 +00:00
serenity = { version = "0.11.6" }
2023-03-23 11:38:53 +00:00
[package.metadata.deb]
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