spoticord/Cargo.toml

53 lines
1.2 KiB
TOML
Raw Normal View History

2022-10-18 20:59:32 +00:00
[package]
name = "spoticord"
version = "2.2.4"
2022-10-18 20:59:32 +00:00
edition = "2021"
2024-08-21 10:29:27 +00:00
rust-version = "1.80.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",
2024-10-12 18:15:31 +00:00
"spoticord_api",
"spoticord_api_grpc",
2024-08-12 14:14:24 +00:00
]
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 }
2024-10-12 18:15:31 +00:00
spoticord_api = { path = "./spoticord_api"}
spoticord_api_grpc = { path = "./spoticord_api_grpc"}
2024-08-12 14:14:24 +00:00
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.3", features = ["full"] }
rustls = { version = "0.23.13", features = ["aws-lc-rs"] }
2024-10-12 18:15:31 +00:00
tonic = "0.12.3"
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