-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (35 loc) · 1.17 KB
/
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
35
36
37
38
39
40
[package]
name = "upnp-client"
version = "0.1.9"
edition = "2021"
repository = "https://github.com/tsirysndr/upnp-client-rs"
license = "MIT"
readme = "README.md"
authors = ["Tsiry Sandratraina <[email protected]>"]
categories = ["command-line-utilities", "network-programming"]
keywords = ["upnp", "client", "tokio", "dlna"]
description = "A simple UPnP client written in Rust"
[[example]]
name = "discover"
path = "examples/discover.rs"
[[example]]
name = "media-renderer-client"
path = "examples/media_renderer_client.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.68"
async-stream = "0.3.3"
colored_json = "3.0.1"
elementtree = "1.2.3"
futures-util = "0.3.25"
http = "0.2.8"
hyper = { version = "0.14.23", features = ["server", "runtime", "client", "stream", "tcp", "http1", "http2"] }
lazy_static = "1.4.0"
owo-colors = "3.5.0"
serde = "1.0.152"
serde_json = "1.0.91"
surf = { version = "2.3.2", features = ["h1-client-rustls"], default-features = false}
tokio = { version = "1.24.2", features = ["tokio-macros", "macros", "rt", "rt-multi-thread"] }
url = "2.3.1"
xml-builder = "0.5.1"
xml-rs = "0.8.4"