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"
|
2024-03-15 00:50:00 +00:00
|
|
|
axum = { version = "0.7.4", default-features = false, features = [
|
2023-12-22 00:43:29 +00:00
|
|
|
"tokio",
|
|
|
|
"http1",
|
|
|
|
"http2",
|
|
|
|
"query",
|
|
|
|
"json",
|
|
|
|
] }
|
2024-03-15 00:50:00 +00:00
|
|
|
base64 = "0.22.0"
|
2023-12-20 06:18:09 +00:00
|
|
|
bytes = "1.5.0"
|
2024-03-15 00:50:00 +00:00
|
|
|
chrono = "0.4.35"
|
|
|
|
chrono-tz = { version = "0.8.6", features = ["case-insensitive"] }
|
|
|
|
eyre = "0.6.12"
|
|
|
|
fend-core = "1.4.5"
|
|
|
|
futures = "0.3.30"
|
2023-12-20 06:18:09 +00:00
|
|
|
html-escape = "0.2.13"
|
2024-01-22 04:30:25 +00:00
|
|
|
once_cell = "1.19.0"
|
2023-12-20 23:17:46 +00:00
|
|
|
rand = "0.8.5"
|
2024-03-15 00:50:00 +00:00
|
|
|
regex = "1.10.3"
|
|
|
|
reqwest = { version = "0.11.26", default-features = false, features = [
|
2023-12-20 06:18:09 +00:00
|
|
|
"rustls-tls",
|
2023-12-31 06:07:40 +00:00
|
|
|
"gzip",
|
|
|
|
"deflate",
|
|
|
|
"brotli",
|
2023-12-20 06:18:09 +00:00
|
|
|
] }
|
2024-03-15 00:50:00 +00:00
|
|
|
scraper = "0.19.0"
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
serde_json = "1.0.114"
|
|
|
|
tokio = { version = "1.36.0", features = ["rt", "macros"] }
|
|
|
|
tokio-stream = "0.1.15"
|
2024-04-13 02:17:34 +00:00
|
|
|
toml = { version = "0.8.12", default-features = false, features = ["parse"] }
|
2023-12-20 06:18:09 +00:00
|
|
|
url = "2.5.0"
|
2023-12-20 08:03:29 +00:00
|
|
|
urlencoding = "2.1.3"
|