24 lines
779 B
TOML
24 lines
779 B
TOML
[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"] }
|