rqbit/crates/upnp/Cargo.toml

30 lines
962 B
TOML
Raw Normal View History

[package]
name = "librqbit-upnp"
2025-01-06 15:27:44 +00:00
version = "1.0.0"
2023-12-06 01:18:25 +00:00
authors = ["Igor Katson <igor.katson@gmail.com>"]
edition = "2021"
2023-12-06 01:18:25 +00:00
description = "Library used by rqbit torrent client to lease port forwards on the router."
license = "Apache-2.0"
documentation = "https://docs.rs/librqbit-upnp"
repository = "https://github.com/ikatson/rqbit"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tracing = "0.1"
anyhow = "1"
reqwest = { version = "0.12", default-features = false }
2024-08-19 17:29:22 +01:00
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["macros"] }
futures = "0.3"
url = { version = "2", default-features = false }
2024-08-27 17:26:39 +01:00
network-interface = { version = "2" }
httparse = "1.9.4"
bstr = "1.10.0"
2024-12-03 20:44:23 +00:00
quick-xml = { version = "0.37.1", features = ["serialize"] }
[dev-dependencies]
2024-08-19 17:29:22 +01:00
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3"