mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-11 22:53:00 +00:00
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>
40 lines
913 B
TOML
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"
|