-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (31 loc) · 1014 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
32
33
34
[package]
name = "subsonic-types"
version = "0.2.0"
edition = "2021"
description = "Types for the Subsonic API"
categories = ["api-bindings"]
homepage = "https://github.com/diogo464/subsonic-types"
repository = "https://github.com/diogo464/subsonic-types"
keywords = ["subsonic", "music", "api", "types"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
subsonic-types-macro = { version = "0.0.0", path = "./subsonic-types-macro" }
time = { version = "0.3", features = [
"parsing",
"macros",
"serde",
"formatting",
] }
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
quick-xml = { version = "0.29", features = ["serde", "serialize"] }
percent-encoding = "2.3.1"
ordered-float = "3.9.2"
[dev-dependencies]
async-trait = "0.1.69"
axum = "0.6.18"
bytes = "1.6.0"
hyper = "0.14.27"
reqwest = { version = "0.11", features = ["blocking"] }
tokio = { version = "1.37.0", features = ["full"] }