-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (25 loc) · 872 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
[package]
name = "od-get"
version = "0.3.1"
authors = ["Bernd-L <[email protected]>"]
edition = "2018"
license = "AGPL-3.0-or-later"
repository = "https://github.com/Bernd-L/od-get"
homepage = "https://github.com/Bernd-L/od-get#readme"
readme = "README.md"
documentation = "https://docs.rs/od-get"
description = "A Rust tool for recursively crawling & downloading data from open directories"
include = ["/README.md", "/LICENSE.md", "/Cargo.toml", "/Cargo.lock", "/src"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
anyhow = "1.0"
clap = "2.33.3"
chrono = "0.4.19"
serde_json = "1.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] }
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11" }
lazy_static = "1.4"
rayon = "1.5"
html-escape = "0.2.6"