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.
33 lines
728 B
TOML
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 }
|