fabro/lib/foundation/fabro-client/Cargo.toml
Bryan Helmkamp 619cb44e3c
Import lithos-llm types directly instead of through fabro-types
fabro-types no longer re-exports the lithos catalog and request types
(ProviderId, ModelId, ModelHandle, Message, ContentPart, TokenCounts,
Cost, Speed, ReasoningEffort, ReasoningOutput, and the rest). Every
crate that uses them depends on lithos-llm and names them there, and
the fabro-api progenitor replacements point at the lithos paths.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-10 10:03:08 -06:00

40 lines
913 B
TOML

[package]
name = "fabro-client"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Typed HTTP client for the Fabro API"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
bytes.workspace = true
chrono = { workspace = true, features = ["serde"] }
fabro-api = { path = "../fabro-api" }
fabro-http.workspace = true
fabro-static.workspace = true
fabro-types = { path = "../fabro-types" }
lithos-llm = { workspace = true, features = ["runtime"] }
fabro-util = { path = "../fabro-util" }
fs2.workspace = true
futures.workspace = true
libc = "0.2"
progenitor-client = "0.13"
rand.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tracing.workspace = true
[dev-dependencies]
httpmock = "0.8"
static_assertions = "1"
tempfile = "3"