mirror of
https://github.com/CloudNebulaProject/barycenter.git
synced 2026-04-10 13:10:42 +00:00
Barycenter is an OpenID Connect Identity Provider (IdP) implementing OAuth 2.0 Authorization Code flow with PKCE. Written in Rust using axum, SeaORM, and josekit. Features: - Authorization Code flow with PKCE (S256) - Dynamic client registration - Token endpoint with multiple auth methods - ID Token signing (RS256) - UserInfo endpoint - Discovery and JWKS publication 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
493 B
TOML
16 lines
493 B
TOML
[profile.default]
|
|
# Run tests serially to avoid port conflicts
|
|
test-threads = 1
|
|
# Increase timeout for integration tests that start the server
|
|
slow-timeout = { period = "180s", terminate-after = 3 }
|
|
# Show output for all tests
|
|
status-level = "all"
|
|
# Always show stdout/stderr for integration tests
|
|
failure-output = "immediate-final"
|
|
success-output = "final"
|
|
|
|
[profile.ci]
|
|
# CI profile with stricter settings
|
|
test-threads = 1
|
|
retries = 2
|
|
slow-timeout = { period = "120s", terminate-after = 3 }
|