-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
51 lines (44 loc) · 1.18 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "spoticord"
version = "2.2.6"
edition = "2021"
rust-version = "1.80.0"
[[bin]]
name = "spoticord"
path = "src/main.rs"
[workspace]
members = [
"spoticord_audio",
"spoticord_config",
"spoticord_database",
"spoticord_player",
"spoticord_session",
"spoticord_utils",
"spoticord_stats",
]
[features]
default = ["stats"]
stats = ["spoticord_stats"]
[dependencies]
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 }
librespot = { git = "https://github.com/SpoticordMusic/librespot.git", default-features = false }
anyhow = "1.0.93"
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.4", features = ["simd-json"] }
tokio = { version = "1.41.1", features = ["full"] }
rustls = { version = "0.23.16", features = ["aws-lc-rs"] }
[profile.release]
opt-level = 3
lto = true
strip = true
[workspace.package]
version = "2.2.6"