mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-11 22:53:00 +00:00
lithos-llm now ships the built-in provider ids and constructors, so fabro-types drops its provider_ids module and every caller uses lithos_llm::catalog::builtin directly. The crates that name a provider now depend on lithos-llm themselves. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
36 lines
998 B
TOML
36 lines
998 B
TOML
[package]
|
|
name = "fabro-hooks"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "User-defined lifecycle hooks for Fabro workflows"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
fabro-agent = { path = "../fabro-agent" }
|
|
fabro-auth = { path = "../../foundation/fabro-auth" }
|
|
fabro-llm = { path = "../fabro-llm" }
|
|
fabro-redact.workspace = true
|
|
fabro-types = { path = "../../foundation/fabro-types" }
|
|
lithos-llm = { workspace = true, features = ["runtime"] }
|
|
fabro-util = { path = "../../foundation/fabro-util" }
|
|
fabro-http.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
async-trait.workspace = true
|
|
regex.workspace = true
|
|
tracing.workspace = true
|
|
tokio-util.workspace = true
|
|
|
|
[dev-dependencies]
|
|
fabro-auth = { path = "../../foundation/fabro-auth", features = ["test-support"] }
|
|
httpmock = "0.8"
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
toml.workspace = true
|