sync from monorepo @ 2452e92e

This commit is contained in:
2026-05-08 01:59:04 +02:00
commit b03dc15371
459 changed files with 129586 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
[package]
name = "dirigent_langfuse"
version = "0.1.0"
edition = "2021"
[features]
default = []
server = ["dep:reqwest", "dep:tokio", "dep:dirigent_core", "dirigent_core/server"]
[dependencies]
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
dirigent_core = { path = "../dirigent_core", optional = true }
dirigent_protocol = { path = "../dirigent_protocol" }
reqwest = { version = "0.12", optional = true, features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tokio = { version = "1", optional = true, features = ["rt", "sync", "macros"] }
toml = "0.8"
tracing = "0.1"
url = "2"
uuid = { version = "1", features = ["v4", "v7"] }