mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
Move secret redaction and DisplaySafeUrl into fabro-redact so credential handling has a narrow ownership boundary. Update direct consumers and docs to depend on fabro_redact instead of fabro_util::redact.
49 lines
1.2 KiB
TOML
49 lines
1.2 KiB
TOML
[package]
|
|
name = "fabro-llm"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "A unified client library for multiple LLM providers"
|
|
repository = "https://github.com/brynary/arc"
|
|
readme = "README.md"
|
|
keywords = ["llm", "ai", "openai", "anthropic"]
|
|
categories = ["api-bindings"]
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
strum.workspace = true
|
|
tokio.workspace = true
|
|
uuid.workspace = true
|
|
rand.workspace = true
|
|
futures.workspace = true
|
|
tokio-stream.workspace = true
|
|
async-trait.workspace = true
|
|
base64.workspace = true
|
|
bytes.workspace = true
|
|
tokio-util.workspace = true
|
|
tracing.workspace = true
|
|
fabro-http.workspace = true
|
|
fabro-auth = { path = "../fabro-auth" }
|
|
fabro-model = { path = "../fabro-model" }
|
|
fabro-redact.workspace = true
|
|
fabro-static.workspace = true
|
|
fabro-util = { path = "../fabro-util" }
|
|
|
|
[dev-dependencies]
|
|
http = "1"
|
|
insta = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
httpmock = "0.8"
|
|
serde_json.workspace = true
|
|
fabro-macros = { path = "../fabro-macros" }
|
|
fabro-test = { workspace = true }
|