rqbit/crates/upnp-serve/Cargo.toml

49 lines
1.5 KiB
TOML
Raw Normal View History

[package]
2024-08-27 18:32:09 +01:00
name = "librqbit-upnp-serve"
2025-01-06 15:27:44 +00:00
version = "1.0.0"
edition = "2021"
2024-08-27 18:32:09 +01:00
description = "Simple UPnP MediaServer implementation"
license = "Apache-2.0"
documentation = "https://docs.rs/librqbit-upnp-serve"
repository = "https://github.com/ikatson/rqbit"
readme = "README.md"
2024-08-27 18:10:52 +01:00
[features]
default = ["sha1-crypto-hash"]
2024-08-30 11:55:05 +01:00
sha1-crypto-hash = [
"librqbit-sha1-wrapper/sha1-crypto-hash",
"librqbit-core/sha1-crypto-hash",
]
sha1-ring = ["librqbit-sha1-wrapper/sha1-ring", "librqbit-core/sha1-ring"]
2024-08-27 18:10:52 +01:00
[dependencies]
anyhow = "1.0.86"
2025-01-06 16:04:46 +00:00
axum = { version = "0.8", features = ["tokio"] }
tokio = { version = "1.39.3", features = ["full"] }
tracing = "0.1.40"
bstr = "1.10.0"
2024-08-27 18:10:52 +01:00
serde = { version = "1", features = ["derive"] }
http = "1.1.0"
httparse = "1.9.4"
uuid = { version = "1.10.0", features = ["v4"] }
2025-01-06 15:27:44 +00:00
librqbit-upnp = { version = "1", path = "../upnp", default-features = false }
gethostname = "0.5.0"
2024-08-27 18:32:09 +01:00
librqbit-sha1-wrapper = { path = "../sha1w", version = "4", default-features = false }
2025-01-06 15:27:44 +00:00
librqbit-core = { version = "4.1", path = "../librqbit_core", default-features = false }
mime_guess = "2.0.5"
url = { version = "2", default-features = false }
parking_lot = "0.12.3"
tokio-util = "0.7.11"
reqwest = { version = "0.12.7", default-features = false }
2024-08-26 18:57:51 +01:00
socket2 = "0.5.7"
2024-12-03 20:44:23 +00:00
quick-xml = { version = "0.37.1", features = ["serialize"] }
2024-08-28 12:33:50 +01:00
network-interface = "2.0.0"
2024-08-28 16:21:59 +01:00
futures = "0.3.30"
[dev-dependencies]
tracing-subscriber = "0.3.18"
2024-12-03 20:44:23 +00:00
tower-http = { version = "0.6.2", features = ["trace"] }
[[example]]
name = "upnp-stub-server"