redvault-ai/llama_proxy_man/Cargo.toml

46 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2024-09-19 16:49:46 +02:00
[package]
name = "llama_proxy_man"
edition = "2021"
authors.workspace = true
description.workspace = true
license.workspace = true
publish.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
[dependencies]
tokio = { version = "1", features = ["full", "process"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
axum = { version = "0.7", features = ["macros"] }
hyper = { version = "1.4", features = ["full"] }
2025-02-20 02:13:21 +01:00
reqwest = { version = "0.12", features = [
"cookies",
"multipart",
"json",
"stream",
"native-tls",
] }
2024-09-19 16:49:46 +02:00
futures = "0.3.30"
anyhow = { version = "1.0.89", features = ["backtrace"] }
thiserror = "1.0.63"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing = "0.1.40"
uuid = { version = "1.10.0", features = ["v4", "v7", "serde"] }
pin-project-lite = "0.2.14"
tower = { version = "0.4", features = ["tokio", "tracing"] }
tower-http = { version = "0.5.2", features = ["trace"] }
reqwest-retry = "0.6.1"
2025-02-20 02:13:21 +01:00
reqwest-middleware = { version = "0.3.3", features = [
"charset",
"http2",
"json",
"multipart",
"rustls-tls",
] }
itertools = "0.13.0"
2024-11-27 10:04:02 +01:00
openport = { version = "0.1.1", features = ["rand"] }
2025-02-10 23:22:31 +01:00
derive_more = { version = "2.0.1", features = ["deref"] }
figment = { version = "0.10.19", features = ["env", "json", "toml", "yaml"] }