-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (21 loc) · 831 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
[package]
name = "spotify_info"
version = "0.5.0"
edition = "2021"
authors = ["Ricky12Awesome"]
description = "Gets metadata from spotify using a spicetify extension using websockets"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Ricky12Awesome/spotify_info"
homepage = "https://github.com/Ricky12Awesome/spotify_info"
exclude = ["extension"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio-tungstenite = "0.17"
futures-channel = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
tokio = { version = "1.17", default-features = false, features = ["net"] }
[dev-dependencies.tokio]
version = "1.17"
default-features = false
features = ["io-std", "macros", "net", "rt-multi-thread", "time"]