moover_rust/Cargo.toml

36 lines
1.1 KiB
TOML
Raw Normal View History

2023-07-05 09:06:04 +00:00
[package]
name = "moover_rust"
version = "3.4.1"
2023-07-05 09:06:04 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.9.0"
2025-01-24 20:52:13 +00:00
anyhow = "1.0.95"
2024-09-28 16:39:05 +00:00
tokio-cron-scheduler = "0.13.0"
2023-07-05 09:06:04 +00:00
dotenv = "0.15.0"
2024-10-03 18:31:10 +00:00
poise = "0.6.1"
serenity = { version = "0.12.4", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "http", "cache"] }
2024-09-28 16:39:05 +00:00
# serenity_utils = "0.7.0"
2025-01-24 20:52:13 +00:00
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
regex = "1.11.1"
2025-01-24 20:52:13 +00:00
chrono = "0.4.39"
sqlx = {version="0.8.3", features=["runtime-tokio", "sqlite"]}
2024-02-18 11:14:02 +00:00
form_urlencoded = "1.2.1"
tenorv2 = { path = "./tenor-v2/tenorv2" }
2024-12-31 11:20:44 +00:00
# librespot = { version = "0.6.0", default-features = false, features = ["rodio-backend"] }
2025-01-06 11:51:57 +00:00
songbird = { version = "0.4.6", features = ["driver", "builtin-queue"] }
reqwest = "0.11.27" # songbird depends on ^0.11
# radiobrowser = "0.6.1"
2025-01-26 22:35:56 +00:00
radiobrowser = { path = "./radiobrowser-lib-rust" }
2025-01-06 11:51:57 +00:00
[dependencies.symphonia]
version = "0.5.4"
2025-01-06 11:51:57 +00:00
features = ["aac", "mp3", "isomp4", "alac"]
2024-02-14 12:22:29 +00:00
[features]
DEBUG = []
2024-02-14 12:44:29 +00:00
RELEASE = []
2025-01-19 14:18:40 +00:00
GUILD_COMMAND = []