mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-21 00:21:27 +00:00
Introduce an HttpClient trait abstraction over reqwest::Client so tests use a lightweight MockHttpClient instead of spawning a TCP server via mockito. This removes the mockito dev-dependency entirely and makes tests faster and more deterministic. Also add self-loop detection in ImportTransform to poison placeholders that have edges pointing back to themselves. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
533 B
TOML
25 lines
533 B
TOML
[package]
|
|
name = "fabro-github"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
description = "GitHub App authentication and API helpers for Fabro"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
reqwest.workspace = true
|
|
jsonwebtoken.workspace = true
|
|
chrono.workspace = true
|
|
tracing.workspace = true
|
|
tokio = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
base64.workspace = true
|