36 lines
1 KiB
TOML
36 lines
1 KiB
TOML
[package]
|
|
name = "reddit-magnet"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "Monitor a Reddit user's posts for magnet links"
|
|
repository = "https://git.enoent.fr/kernald/reddit-magnet"
|
|
categories = ["command-line-utilities"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.37", features = ["derive"] }
|
|
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"] }
|
|
regex = "1.11.1"
|
|
figment_file_provider_adapter = "0.1.1"
|
|
directories = "6.0.0"
|
|
log = "0.4.27"
|
|
color-eyre = "0.6.3"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
multimap = "0.10.0"
|
|
diesel = { version = "2.2.10", features = ["sqlite", "chrono"] }
|
|
diesel_migrations = "2.2.0"
|
|
tempfile = "3.19.1"
|
|
transmission-rpc = "0.5.0"
|
|
url = "2.5.4"
|
|
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"
|
|
magnet-url = "2.0.0"
|
|
urlencoding = "2.1.3"
|
|
ntfy = "0.7.0"
|