mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
- Replace unwrap_or_default() with expect() in hooks/llm HTTP client builders — Default silently discards all config (timeouts, TLS, proxy) - Route fabro-mcp through fabro_http instead of raw reqwest, respecting FABRO_HTTP_PROXY_POLICY for MCP HTTP transport connections - Deduplicate HttpClientBuilder / BlockingHttpClientBuilder via macro - Extract helpers for repeated http_client error handling in diagnostics and web_auth - Remove duplicate test_http_client() in fabro-cli and fabro-llm Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
805 B
TOML
35 lines
805 B
TOML
[package]
|
|
name = "fabro-mcp"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "MCP (Model Context Protocol) client for connecting to external tool servers"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
fabro-config = { path = "../fabro-config" }
|
|
fabro-http.workspace = true
|
|
fabro-types = { path = "../fabro-types" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
futures.workspace = true
|
|
tracing.workspace = true
|
|
rmcp = { workspace = true, features = [
|
|
"client",
|
|
"macros",
|
|
"schemars",
|
|
"server",
|
|
"transport-child-process",
|
|
"transport-streamable-http-client-reqwest",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|