Implement Deluge support
This commit is contained in:
parent
9c993d7c04
commit
31d124dd82
21 changed files with 659 additions and 72 deletions
11
Cargo.toml
11
Cargo.toml
|
|
@ -13,12 +13,15 @@ roux = "2.2.14"
|
|||
figment = { version = "0.10", features = ["toml", "json", "env"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
tokio = { version = "1.44.2", features = ["rt", "rt-multi-thread", "macros"] }
|
||||
tokio = { version = "1.44.2", features = ["rt", "rt-multi-thread", "macros", "io-util", "net"] }
|
||||
regex = "1.11.1"
|
||||
figment_file_provider_adapter = "0.1.1"
|
||||
directories = "6.0.0"
|
||||
log = "0.4.27"
|
||||
color-eyre = "0.6.3"
|
||||
tokio-rustls = "0.25.0"
|
||||
rustls = "0.22.2"
|
||||
rustls-native-certs = "0.7.0"
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
multimap = "0.10.0"
|
||||
diesel = { version = "2.2.10", features = ["sqlite", "chrono"] }
|
||||
|
|
@ -30,7 +33,11 @@ clap-verbosity-flag = "3.0.2"
|
|||
pretty_env_logger = "0.5.0"
|
||||
async-trait = "0.1.88"
|
||||
console = "0.15.11"
|
||||
reqwest = "0.12.15"
|
||||
reqwest = { version = "0.12.15", features = ["cookies"] }
|
||||
magnet-url = "2.0.0"
|
||||
urlencoding = "2.1.3"
|
||||
ntfy = "0.7.0"
|
||||
tokio-util = "0.7.15"
|
||||
env_logger = "0.10.2"
|
||||
tokio-serde = { version = "0.9.0", features = ["json"] }
|
||||
futures = "0.3.31"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue