Phase 1: add libs/observability crate (build_logger, instance_id); remove duplicate logger init from 4 crates Phase 2: Actix-web RequestLogger with trace_id; MetricsMiddleware + HttpMetrics Phase 3: Git SSH handle.rs slog struct; HTTP handler Logger kv Phase 4: AI client eprintln -> slog warn; billing ai_usage_recorded log Phase 5: SessionManager slog; workspace alert slog 2.x syntax
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "agent"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
documentation.workspace = true
|
|
[lib]
|
|
path = "lib.rs"
|
|
name = "agent"
|
|
[dependencies]
|
|
async-openai = { version = "0.34.0", features = ["embedding", "chat-completion", "model"] }
|
|
tokio = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
qdrant-client = { workspace = true }
|
|
sea-orm = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
db = { workspace = true }
|
|
config = { path = "../config" }
|
|
models = { workspace = true }
|
|
chrono = { workspace = true }
|
|
uuid = { workspace = true }
|
|
futures = { workspace = true }
|
|
tiktoken-rs = { workspace = true }
|
|
agent-tool-derive = { path = "../agent-tool-derive" }
|
|
once_cell = { workspace = true }
|
|
regex = { workspace = true }
|
|
slog = { workspace = true }
|
|
[lints]
|
|
workspace = true
|