-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (47 loc) · 1.14 KB
/
Copy pathCargo.toml
File metadata and controls
63 lines (47 loc) · 1.14 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "qonductor"
version = "0.1.0-alpha.6"
edition = "2024"
description = "Rust implementation of the Qobuz Connect protocol"
license = "MIT"
repository = "https://github.com/nickblt/qonductor"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP client
reqwest = { version = "0.12", features = ["json", "stream"] }
# WebSocket
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
# HTTP server for discovery
axum = "0.8"
# Protobuf
prost = "0.13"
# Error handling
thiserror = "2"
# Logging
tracing = "0.1"
# Cryptography
md-5 = "0.10"
# Encoding
base64 = "0.22"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# URL handling
url = "2"
# Utilities
async-stream = "0.3"
bytes = "1"
futures = "0.3"
rand = "0.8"
uuid = { version = "1", features = ["std"] }
# mDNS (pure Rust, no system dependencies)
mdns-sd = "0.17.1"
[dev-dependencies]
tokio-test = "0.4"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
wiremock = "0.6"
[features]
compile-protos = ["dep:prost-build"]
[build-dependencies]
prost-build = { version = "0.13", optional = true }