2025-05-19 09:59:22 -07:00
|
|
|
[package]
|
|
|
|
|
name = "brightstaff"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-11-22 12:55:00 -08:00
|
|
|
async-openai = "0.30.1"
|
2025-12-17 12:18:38 -08:00
|
|
|
async-trait = "0.1"
|
2025-05-19 09:59:22 -07:00
|
|
|
bytes = "1.10.1"
|
2025-11-22 12:55:00 -08:00
|
|
|
chrono = "0.4"
|
2026-02-09 13:33:27 -08:00
|
|
|
common = { version = "0.1.0", path = "../common" }
|
2025-05-19 09:59:22 -07:00
|
|
|
eventsource-client = "0.15.0"
|
|
|
|
|
eventsource-stream = "0.2.3"
|
2025-12-17 12:18:38 -08:00
|
|
|
flate2 = "1.0"
|
2025-05-19 09:59:22 -07:00
|
|
|
futures = "0.3.31"
|
|
|
|
|
futures-util = "0.3.31"
|
2025-06-10 12:53:27 -07:00
|
|
|
hermesllm = { version = "0.1.0", path = "../hermesllm" }
|
2025-05-19 09:59:22 -07:00
|
|
|
http-body = "1.0.1"
|
|
|
|
|
http-body-util = "0.1.3"
|
|
|
|
|
hyper = { version = "1.6.0", features = ["full"] }
|
|
|
|
|
hyper-util = "0.1.11"
|
2026-02-09 13:33:27 -08:00
|
|
|
opentelemetry = "0.31"
|
|
|
|
|
opentelemetry-http = "0.31"
|
|
|
|
|
opentelemetry-otlp = {version="0.31", features=["trace", "grpc-tonic"]}
|
|
|
|
|
opentelemetry-stdout = "0.31"
|
|
|
|
|
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"] }
|
2025-05-19 09:59:22 -07:00
|
|
|
pretty_assertions = "1.4.1"
|
2025-11-22 12:55:00 -08:00
|
|
|
rand = "0.9.2"
|
2025-05-19 09:59:22 -07:00
|
|
|
reqwest = { version = "0.12.15", features = ["stream"] }
|
|
|
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.140"
|
2025-07-02 14:08:19 -07:00
|
|
|
serde_with = "3.13.0"
|
2026-01-07 11:20:44 -08:00
|
|
|
strsim = "0.11"
|
2025-05-19 09:59:22 -07:00
|
|
|
serde_yaml = "0.9.34"
|
|
|
|
|
thiserror = "2.0.12"
|
|
|
|
|
tokio = { version = "1.44.2", features = ["full"] }
|
2025-12-17 12:18:38 -08:00
|
|
|
tokio-postgres = { version = "0.7", features = ["with-serde_json-1"] }
|
2025-10-14 14:01:11 -07:00
|
|
|
tokio-stream = "0.1"
|
2025-09-30 18:46:13 -07:00
|
|
|
time = { version = "0.3", features = ["formatting", "macros"] }
|
2025-10-14 14:01:11 -07:00
|
|
|
tracing = "0.1"
|
2026-02-09 13:33:27 -08:00
|
|
|
tracing-opentelemetry = "0.32.1"
|
2025-10-14 14:01:11 -07:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2025-11-22 12:55:00 -08:00
|
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
2025-10-14 14:01:11 -07:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
mockito = "1.0"
|
|
|
|
|
tokio-stream = "0.1.17"
|
2025-05-19 09:59:22 -07:00
|
|
|
tracing = "0.1.41"
|
2026-02-09 13:33:27 -08:00
|
|
|
tracing-opentelemetry = "0.32.1"
|
2025-09-30 18:46:13 -07:00
|
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt", "time"] }
|