2023-12-05 14:24:16 +00:00
|
|
|
[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>"]
|
2023-12-05 14:24:16 +00:00
|
|
|
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"
|
2023-12-05 14:24:16 +00:00
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
anyhow = "1"
|
2024-08-21 23:57:21 +01:00
|
|
|
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"] }
|
2023-12-05 14:24:16 +00:00
|
|
|
futures = "0.3"
|
2024-12-03 20:58:21 +00:00
|
|
|
url = { version = "2", default-features = false }
|
2024-08-27 17:26:39 +01:00
|
|
|
network-interface = { version = "2" }
|
2024-08-25 14:59:39 +01:00
|
|
|
httparse = "1.9.4"
|
|
|
|
|
bstr = "1.10.0"
|
2024-12-03 20:44:23 +00:00
|
|
|
quick-xml = { version = "0.37.1", features = ["serialize"] }
|
2023-12-05 14:24:16 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-19 17:29:22 +01:00
|
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
|
|
|
tracing-subscriber = "0.3"
|