buster/api/libs/handlers/Cargo.toml

41 lines
1.0 KiB
TOML
Raw Normal View History

2025-02-15 04:44:21 +08:00
[package]
name = "handlers"
version = "0.1.0"
edition = "2021"
[dependencies]
# Use workspace dependencies
anyhow = { workspace = true }
chrono = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
2025-02-18 23:52:14 +08:00
serde_yaml = { workspace = true }
2025-02-15 04:44:21 +08:00
tokio = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
diesel = { workspace = true }
diesel-async = { workspace = true }
futures = { workspace = true }
regex = { workspace = true }
indexmap = { workspace = true }
2025-03-05 00:40:27 +08:00
async-trait = { workspace = true }
2025-02-15 04:44:21 +08:00
2025-02-18 23:17:43 +08:00
# Local dependencies
database = { path = "../database" }
2025-03-01 05:22:55 +08:00
agents = { path = "../agents" }
litellm = { path = "../litellm" }
query_engine = { path = "../query_engine" }
middleware = { path = "../middleware" }
2025-03-12 02:51:31 +08:00
sharing = { path = "../sharing" }
2025-03-26 04:31:02 +08:00
search = { path = "../search" }
2025-02-18 23:17:43 +08:00
2025-03-01 01:35:55 +08:00
# Add any handler-specific dependencies here
2025-03-19 07:41:52 +08:00
dashmap = "5.5.3"
2025-03-01 01:35:55 +08:00
[dev-dependencies]
tokio-test = { workspace = true }
mockall = { workspace = true }
2025-04-03 04:46:28 +08:00
dotenv = { workspace = true }
lazy_static.workspace = true
ctor = "0.4.1"