fabro/lib/crates/fabro-oauth/Cargo.toml
Bryan Helmkamp 56de394e01
refactor(redact): extract redaction into dedicated crate
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.
2026-04-24 15:02:23 -04:00

33 lines
728 B
TOML

[package]
name = "fabro-oauth"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Generic OAuth 2.0 PKCE token acquisition for Fabro"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
serde.workspace = true
serde_json.workspace = true
fabro-http.workspace = true
fabro-redact.workspace = true
sha2.workspace = true
base64.workspace = true
rand.workspace = true
hex.workspace = true
tokio.workspace = true
tracing.workspace = true
axum.workspace = true
fabro-static.workspace = true
fabro-util = { path = "../fabro-util" }
[dev-dependencies]
httpmock = "0.8"
tokio = { workspace = true, features = ["test-util", "macros"] }
fabro-test = { workspace = true }