2025-03-01 01:35:55 +08:00
|
|
|
[package]
|
|
|
|
name = "agents"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# Inherit workspace dependencies
|
|
|
|
[dependencies]
|
|
|
|
# Use workspace dependencies
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
|
|
|
litellm = { path = "../litellm" }
|
2025-03-01 03:32:41 +08:00
|
|
|
database = { path = "../database" }
|
|
|
|
query_engine = { path = "../query_engine" }
|
2025-03-14 22:47:34 +08:00
|
|
|
braintrust = { path = "../braintrust" }
|
2025-03-01 01:35:55 +08:00
|
|
|
serde_json = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
2025-03-01 03:32:41 +08:00
|
|
|
chrono = { workspace = true }
|
|
|
|
diesel = { workspace = true }
|
|
|
|
diesel-async = { workspace = true }
|
|
|
|
serde_yaml = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
indexmap = { workspace = true }
|
2025-03-19 02:16:24 +08:00
|
|
|
once_cell = { workspace = true }
|
2025-04-11 01:01:00 +08:00
|
|
|
regex = "1"
|
|
|
|
glob = "0.3"
|
2025-04-11 04:44:52 +08:00
|
|
|
cohere-rust = { workspace = true }
|
2025-04-19 00:36:57 +08:00
|
|
|
dataset_security = { path = "../dataset_security" }
|
2025-04-24 01:47:11 +08:00
|
|
|
redis = { workspace = true }
|
|
|
|
reqwest = { workspace = true }
|
|
|
|
sqlx = { workspace = true }
|
|
|
|
stored_values = { path = "../stored_values" }
|
2025-04-27 00:47:58 +08:00
|
|
|
tokio-retry = { workspace = true }
|
2025-04-27 00:59:37 +08:00
|
|
|
thiserror = { workspace = true }
|
2025-04-29 04:00:36 +08:00
|
|
|
raindrop = { path = "../raindrop" }
|
2025-04-30 07:36:34 +08:00
|
|
|
sql_analyzer = { path = "../sql_analyzer" }
|
2025-03-01 01:35:55 +08:00
|
|
|
|
|
|
|
# Development dependencies
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio-test = { workspace = true }
|
|
|
|
mockito = { workspace = true }
|
|
|
|
dotenv = { workspace = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|