-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (27 loc) · 950 Bytes
/
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
[package]
name = "bazarr-bulk"
authors = ["Mateo Radman <[email protected]>"]
version = "0.1.6"
edition = "2021"
description = "A bulk operation CLI tool for Bazarr"
documentation = "https://github.com/mateoradman/bazarr-bulk"
homepage = "https://github.com/mateoradman/bazarr-bulk"
repository = "https://github.com/mateoradman/bazarr-bulk"
license = "MIT"
categories = ["command-line-utilities"]
[[bin]]
bench = false
name = "bb"
path = "src/main.rs"
[dependencies]
config = { version = "0.13.4", features = ["json"] }
clap = { version = "4.5.2", features = ["derive"] }
human-panic = "1.2.3"
indicatif = { version = "0.17.8", features = ["tokio"] }
reqwest = { version = "0.11.25", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
reqwest-retry = "0.4.0"
reqwest-tracing = "0.4.0"
reqwest-middleware = "0.2.5"