-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (28 loc) · 883 Bytes
/
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
[package]
name = "plugin-spotify"
description = "Sends the current song to the chatbox and controls playback via avatar prefabs"
version.workspace = true
authors.workspace = true
edition.workspace = true
[lib]
name = "spotify"
crate-type = ["cdylib"]
[dependencies]
anyhow.workspace = true
async-ffi = { workspace = true, features = ["macros"] }
derive-config = { workspace = true, features = ["toml"] }
dotenvy_macro.workspace = true
ferrispot = { workspace = true, features = ["async", "rustls-tls"] }
inquire.workspace = true
rosc.workspace = true
serde = { workspace = true, features = ["derive"] }
spotify-lyrics.workspace = true
terminal-link.workspace = true
tiny_http.workspace = true
tokio = { workspace = true, features = ["macros", "rt", "time"] }
toml.workspace = true
url.workspace = true
webbrowser.workspace = true
[lints.clippy]
pedantic = "warn"
nursery = "warn"