metasearch/Cargo.toml
2024-01-15 01:20:14 -06:00

45 lines
1.1 KiB
TOML

[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]
ammonia = "3.3.0"
async-stream = "0.3.5"
axum = { version = "0.7.2", default-features = false, features = [
"tokio",
"http1",
"http2",
"query",
"json",
] }
base64 = "0.21.5"
bytes = "1.5.0"
chrono = "0.4.31"
chrono-tz = { version = "0.8.5", features = ["case-insensitive"] }
eyre = "0.6.11"
fend-core = "1.3.3"
futures = "0.3.29"
html-escape = "0.2.13"
rand = "0.8.5"
regex = "1.10.2"
reqwest = { version = "0.11.23", default-features = false, features = [
"rustls-tls",
"gzip",
"deflate",
"brotli",
] }
scraper = "0.18.1"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1.35.0", features = ["rt", "macros"] }
tokio-stream = "0.1.14"
url = "2.5.0"
urlencoding = "2.1.3"
[patch.crates-io]
# temporarily using git version of fend-core since it adds codepoint to character conversion
fend-core = { git = "https://github.com/printfn/fend", branch = "main" }