ffdl/Cargo.toml
Daniel M f9659246ca Implement zippy resolver with js evaluation
- Add ducc crate (duktape bindings) as javascript engine
- Extract the script tag from zippyshare page contents
- Preprocess the script and execute the js to get the link
- This removes the need for full regex based implementations for each
  antiscrape challenge
2022-09-13 15:37:20 +02:00

20 lines
475 B
TOML

[package]
name = "ffdl"
version = "0.1.6"
authors = ["daniel m <danielm@dnml.de>"]
edition = "2021"
description = "Download files fast"
[dependencies]
tokio = { version = "1.17.0", features = [ "full" ] }
reqwest = { version = "0.11.10", features = [ "stream" ] }
futures = "0.3.21"
percent-encoding = "2.1.0"
regex = "1.5.5"
clap = { version = "3.1.12", features = [ "derive" ] }
chrono = "0.4.19"
thiserror = "1.0.30"
anyhow = "1.0.57"
crossterm = "0.24.0"
ducc = "0.1.5"