-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (21 loc) · 857 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 = "bose_soundtouch"
version = "1.1.0"
edition = "2021"
description = "Client library for the Bose SoundTouch API"
homepage = "https://github.com/timvw/bose_soundtouch"
repository = "https://github.com/timvw/bose_soundtouch"
readme = "README.md"
authors = ["Tim Van Wassenhove <tim@timvw.be>"]
keywords = ["bose", "soundtouch", "client"]
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = { version = "1.0.59" }
quick-xml = { version = "0.36", features = ["serialize"] }
reqwest = { version = "0.12.4", features = ["blocking"] }
serde = { version = "1.0.200", features = ["derive"] }
[dev-dependencies]
anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive", "env"] }
tokio = { version = "1.37.0", features = ["full", "tracing"] }