-
Notifications
You must be signed in to change notification settings - Fork 39
/
Cargo.toml
57 lines (51 loc) · 1.1 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "suckit"
version = "0.2.0"
edition = "2018"
authors = ["Esteban \"Skallwar\" Blanc <estblcsk@gmail.com>",
"Arthur \"CohenArthur\" Cohen <cohenarthur.dev@gmail.com>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/skallwar/suckit"
repository = "https://github.com/skallwar/suckit"
documentation = "https://github.com/skallwar/suckit"
readme = "README.md"
description = "SuckIT, Suck the InTernet"
keywords = ["cli"]
categories = ["command-line-utilities"]
include = [
"README.md",
"LICENSE*",
"Cargo.toml",
"src/*",
]
[package.metadata]
msrv = "1.67.0"
[lib]
name = "suckit"
path = "src/lib.rs"
[[bin]]
name = "suckit"
path = "src/bin/suckit.rs"
doc = false
[dependencies]
structopt = "^0.3"
crossbeam = "^0.8"
reqwest = { version = "^0.11", features = ["blocking", "cookies"] }
kuchiki = "^0.8"
colored = "2.0"
chrono = "^0.4"
url = "^2.3"
rand = "^0.8"
regex = "^1.6"
encoding_rs = "^0.8"
lazy_static = "1.4.0"
pathdiff = "^0.2"
md5 = "^0.7"
symlink = "^0.1.0"
[dev-dependencies]
tiny_http = "^0.12"
subprocess = "^0.2"
mktemp = "^0.5"
portpicker = "^0.1"
[profile.release]
lto = true