hackpsuchatbot/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2024-10-12 18:13:54 +00:00
[package]
name = "hackpsuchatbot"
version = "0.1.0"
edition = "2021"
2024-10-13 01:55:53 +00:00
#[lib]
#name = "margdarshak"
#path = "src/lib.rs"
#
#[[bin]]
#name = "hackpsuchatbot"
#path = "src/main.rs"
2024-10-12 18:13:54 +00:00
[dependencies]
2024-10-13 01:55:53 +00:00
hyper = { version = "1.4.1", features = ["full"] }
2024-10-12 18:33:42 +00:00
async-trait = "0.1.83"
2024-10-13 01:55:53 +00:00
reqwest = { version = "0.11", features = [
"json",
"rustls-tls",
], default-features = false }
2024-10-12 18:33:42 +00:00
anyhow = "1.0.89"
hyper-util = { version = "0.1", features = ["tokio"] }
http-body-util = "0.1.0"
bytes = "1.7.2"
2024-10-13 01:55:53 +00:00
tokio = { version = "1.40.0", features = ["full"] }
scraper = { version = "0.20.0", features = [] }
num_cpus = "1.16.0"
serde_json = "1.0.128"
async-recursion = "1.1.1"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
htmd = "0.1.6"
qdrant-client = "1.12.1"
reqwest-middleware = "0.2.5"
http-cache-reqwest = { version = "0.13.0", features = [
"manager-moka",
], default-features = false }
margdarshak-http-cache = { path = "margdarshak-http-cache" }
genai = { git = "https://github.com/laststylebender14/rust-genai.git", rev = "63a542ce20132503c520f4e07108e0d768f243c3" }
md_to_text = "0.0.0"
[workspace]
members = [".", "margdarshak-http-cache"]