[package]
edition = "2024"
name = "hightorrent_api"
version = "0.2.2"
authors = ["angrynode <angrynode@kl.netlib.re>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Highlevel torrent API client, supporting Bittorrent v1, v2 and hybrid torrents"
documentation = "https://docs.rs/hightorrent_api"
readme = "README.md"
keywords = [
"torrent",
"magnet",
"bittorrent",
"qbittorrent",
]
license = "AGPL-3.0-only"
repository = "https://github.com/angrynode/hightorrent_api"
[features]
default = ["qbittorrent"]
qbittorrent = ["reqwest"]
sea_orm = ["hightorrent/sea_orm"]
[lib]
name = "hightorrent_api"
path = "src/lib.rs"
[[test]]
name = "qbittorrent"
path = "tests/qbittorrent.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.hightorrent]
version = "0.4.1"
[dependencies.reqwest]
version = "0.12"
features = [
"multipart",
"json",
"cookies",
"stream",
]
optional = true
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.snafu]
version = "0.8"
[dependencies.tokio]
version = "1"
features = ["fs"]
[dependencies.tokio-util]
version = "0.7"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]