-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 990 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
29
30
31
32
33
34
35
36
37
[package]
name = "waper"
version = "0.1.4"
edition = "2021"
description = "A CLI tool to scrape HTML websites"
license = "MIT"
repository = "https://github.com/nkitsaini/waper"
default-run = "waper"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.2.7", features = ["derive"] }
futures = "0.3.28"
parking_lot = { version = "0.12.1" }
patricia_tree = "0.5.7"
radix_trie = "0.2.1"
regex = "1.8.1"
reqwest = "0.11.17"
select = "0.6.0"
tokio = { version = "1.28.0", features = ["sync", "tokio-macros", "full"] }
tracing = "0.1"
tracing-subscriber = "0.2.0"
trie-rs = "0.1.1"
sqlx = { version = "0.6.2", features = [ "runtime-tokio-native-tls", "sqlite" ] }
clap_complete = "4.2.1"
url = "2.3.1"
shlex = "1.1.0"
[profile.dev.package.sqlx-macros]
opt-level = 3
[dev-dependencies]
axum = { version = "0.6.18", features = ["macros"] }
serde = { version = "1.0.163", features = ["derive"] }