fabro/lib/foundation/fabro-api/Cargo.toml
Bryan Helmkamp fa3e485c95
Name built-in providers through lithos catalog::builtin
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>
2026-09-10 09:48:37 -06:00

39 lines
1 KiB
TOML

[package]
name = "fabro-api"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Generated Rust types and HTTP client from the Fabro API OpenAPI spec"
[lib]
doctest = false
[lints.clippy]
# Auto-generated crate; only enforce project-specific lints
wildcard_imports = "warn"
[dependencies]
chrono = { workspace = true, features = ["serde"] }
fabro-automation = { path = "../../components/fabro-automation" }
fabro-config = { path = "../fabro-config" }
fabro-environment.workspace = true
fabro-types = { path = "../fabro-types" }
lithos-llm = { workspace = true, features = ["runtime"] }
progenitor-client = "0.13"
regress = "0.10"
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
uuid = { workspace = true, features = ["serde"] }
[build-dependencies]
openapiv3 = "2"
progenitor = "0.13"
serde_json = "1"
serde_yaml = "0.9"
prettyplease = "0.2"
syn = "2"
[dev-dependencies]
fabro-types = { path = "../fabro-types", features = ["test-support"] }