-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1020 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1020 Bytes
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
[package]
name = "webgrep"
version = "0.1.0"
authors = ["Justin Lovinger"]
description = "Recursively search the web, starting from URL..., for PATTERN"
readme = "README.md"
homepage = "https://github.com/JustinLovinger/webgrep"
repository = "https://github.com/JustinLovinger/webgrep"
keywords = ["regex", "grep", "search", "pattern", "web"]
categories = ["command-line-utilities"]
license = "MIT"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
bincode = "1"
clap = { version = "3", features = ["derive"] }
console = "0.15"
futures = "0.3"
html5ever = "0.25"
indicatif = "0.17.0-rc.10"
itertools = "0.10"
markup5ever_rcdom = "0.1"
num_cpus = "1"
regex = "1"
reqwest = "0.11"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
url = "2"
[dev-dependencies]
lazy_static = "1"
quickcheck = "1"
quickcheck_async = "0.1"
rand = { version = "0.8", features = ["small_rng"] }