qbt-rs/Cargo.toml
programmer@kl.netlib.re c6d9a0c07d Add replace-tracker/replace-all-trackers commands
API supports get/add/remove_tracker method
Workaround for qbittorrent API dont return name/hash of torrent on "info" method
Patch qbittorrent_web_api API spec to support add_trackers arguments
2022-11-03 15:24:39 +01:00

33 lines
619 B
TOML

[package]
name = "qbt"
version = "0.1.0"
edition = "2021"
[lib]
name = "qbt"
path = "src/lib.rs"
[[bin]]
name = "qbt"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
toml = "0.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
xdg = "2.4"
snafu = "0.7"
qbittorrent-web-api = { git = "https://kl.netlib.re/gitea/programmer/qbittorrent_web_api" }
argh = "0.1"
tokio = "1.21"
imdl = { path = "vendor/intermodal" }
regex = "1"
transmission-rpc = "0.4"
[profile.release]
strip = true
lto = "thin"
#opt-level = "z"