spoticord/Cargo.toml

47 lines
1012 B
TOML
Raw Normal View History

2022-10-18 20:59:32 +00:00
[package]
name = "spoticord"
2024-08-15 06:35:55 +00:00
version = "2.2.1"
2022-10-18 20:59:32 +00:00
edition = "2021"
2024-08-12 14:14:24 +00:00
rust-version = "1.75.0"
2022-10-18 20:59:32 +00:00
2022-10-31 21:46:34 +00:00
[[bin]]
name = "spoticord"
path = "src/main.rs"
2022-10-18 20:59:32 +00:00
2024-08-12 14:14:24 +00:00
[workspace]
members = [
"spoticord_audio",
"spoticord_config",
"spoticord_database",
"spoticord_player",
"spoticord_session",
"spoticord_utils",
"spoticord_stats",
]
2023-09-19 11:49:32 +00:00
[features]
2024-08-12 14:14:24 +00:00
default = ["stats"]
stats = ["spoticord_stats"]
2023-09-19 11:49:32 +00:00
2022-10-18 20:59:32 +00:00
[dependencies]
2024-08-12 14:14:24 +00:00
spoticord_config = { path = "./spoticord_config" }
spoticord_database = { path = "./spoticord_database" }
spoticord_player = { path = "./spoticord_player" }
spoticord_session = { path = "./spoticord_session" }
spoticord_utils = { path = "./spoticord_utils" }
spoticord_stats = { path = "./spoticord_stats", optional = true }
anyhow = "1.0.86"
dotenvy = "0.15.7"
env_logger = "0.11.5"
log = "0.4.22"
poise = "0.6.1"
serenity = "0.12.2"
songbird = { version = "0.4.3", features = ["simd-json"] }
tokio = { version = "1.39.2", features = ["full"] }
2023-09-18 20:39:11 +00:00
[profile.release]
opt-level = 3
lto = true
2024-08-12 14:14:24 +00:00
strip = true