metasearch/Cargo.toml

40 lines
870 B
TOML
Raw Normal View History

2023-12-20 06:18:09 +00:00
[package]
name = "metasearch2"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-12-21 05:17:39 +00:00
ammonia = "3.3.0"
2023-12-20 06:18:09 +00:00
async-stream = "0.3.5"
axum = { version = "0.7.2", default-features = false, features = [
"tokio",
"http1",
"http2",
"query",
"json",
] }
2023-12-20 06:18:09 +00:00
base64 = "0.21.5"
bytes = "1.5.0"
2024-01-09 19:52:30 +00:00
chrono = "0.4.31"
2023-12-20 06:18:09 +00:00
eyre = "0.6.11"
2023-12-20 23:17:46 +00:00
fend-core = "1.3.3"
2023-12-20 06:18:09 +00:00
futures = "0.3.29"
html-escape = "0.2.13"
2023-12-20 23:17:46 +00:00
rand = "0.8.5"
2023-12-20 10:08:36 +00:00
regex = "1.10.2"
2023-12-20 06:18:09 +00:00
reqwest = { version = "0.11.23", default-features = false, features = [
"rustls-tls",
2023-12-31 06:07:40 +00:00
"gzip",
"deflate",
"brotli",
2023-12-20 06:18:09 +00:00
] }
scraper = "0.18.1"
serde = { version = "1.0.193", features = ["derive"] }
2023-12-20 09:28:38 +00:00
serde_json = "1.0.108"
tokio = { version = "1.35.0", features = ["rt", "macros"] }
2023-12-20 06:18:09 +00:00
tokio-stream = "0.1.14"
url = "2.5.0"
2023-12-20 08:03:29 +00:00
urlencoding = "2.1.3"