mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
Add the stripped twin-github test server to the workspace, wire it through fabro-test, and cover fabro-github's real HTTP auth and pull-request flows with twin-backed integration tests. This also refactors the GitHub helper entry points to take explicit base URLs so tests and callers share the same request path.
28 lines
627 B
TOML
28 lines
627 B
TOML
[package]
|
|
name = "fabro-github"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
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 }
|
|
base64.workspace = true
|
|
|
|
[dev-dependencies]
|
|
fabro-macros = { path = "../fabro-macros" }
|
|
fabro-test = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|