52 lines
1.1 KiB
TOML
52 lines
1.1 KiB
TOML
[package]
|
|
name = "gallery-dl"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
authors = ["gallery-dl team"]
|
|
description = "Command-line image and media downloader"
|
|
license = "GPL-2.0"
|
|
|
|
[lib]
|
|
name = "gallery_dl"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8"
|
|
serde_yaml = "0.9"
|
|
dirs = "6.0"
|
|
|
|
# Extraction framework dependencies
|
|
reqwest = { version = "0.13", features = ["json", "cookies", "gzip", "brotli", "stream"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
scraper = "0.25"
|
|
regex = "1.12"
|
|
url = "2.5"
|
|
urlencoding = "2.1"
|
|
thiserror = "2"
|
|
once_cell = "1"
|
|
async-trait = "0.1"
|
|
|
|
# Download pipeline dependencies
|
|
indicatif = "0.18"
|
|
futures = "0.3"
|
|
zip = { version = "8.0.0", features = ["deflate"] }
|
|
walkdir = "2.5.0"
|
|
chrono = { version = "0.4.43", features = ["serde"] }
|
|
rusqlite = { version = "0.38.0", features = ["bundled"] }
|
|
tempfile = "3.10"
|
|
filetime = "0.2"
|
|
httpdate = "1.0"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.10"
|
|
tokio-test = "0.4"
|