-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
54 lines (52 loc) · 1.41 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
[package]
name = "metasearch"
version = "0.2.1"
edition = "2021"
build = "src/build.rs"
description = "a cute metasearch engine"
license = "CC0-1.0"
repository = "https://github.com/mat-1/metasearch2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ammonia = "4.0.0"
async-stream = "0.3.6"
axum = { version = "0.7.9", default-features = false, features = [
"tokio",
"http1",
"http2",
"query",
"json",
"form",
] }
axum-extra = { version = "0.9.6", features = ["cookie"] }
base64 = "0.22.1"
bytes = "1.9.0"
chrono = "0.4.39"
chrono-tz = { version = "0.10.0", features = ["case-insensitive"] }
eyre = "0.6.12"
fend-core = "1.5.5"
futures = "0.3.31"
html-escape = "0.2.13"
maud = "0.26.0"
numbat = "1.14.0"
rand = "0.8.5"
regex = "1.11.1"
reqwest = { version = "0.12.12", default-features = false, features = [
"rustls-tls",
"gzip",
"deflate",
"brotli",
] }
scraper = "0.22.0"
serde = { version = "1.0.217", features = ["derive"] }
# preserve_order is needed for google images. yippee!
serde_json = { version = "1.0.134", features = ["preserve_order"] }
tokio = { version = "1.42.0", features = ["rt", "macros"] }
tokio-stream = "0.1.17"
toml = { version = "0.8.19", default-features = false, features = ["parse"] }
tower = "0.5.2"
tower-http = "0.6.2"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
url = "2.5.4"
urlencoding = "2.1.3"