Files
euzuandGitHub c592411409 Fix/provider priority (#856)
Bug Fixes

    Improved provider capacity management and reservation handling for shared connections.
    Added support for excluding providers during connection allocation.
    Improved grace-period expiration and concurrent access handling.
    Preserved reserved capacity during fallback and preemptive allocations.

Chores

    Improved unused-dependency checks and command configuration.
    Removed unused dependencies across multiple components.
    Added exceptions for dependencies used indirectly through macros or renamed packages.

Tests

    Added coverage for provider reservations, fallback allocation, grace-period expiry, and concurrent grace access.
2026-09-04 10:49:45 +02:00

35 lines
1.1 KiB
TOML

[package]
name = "tuliprox-auth"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
description = "Authentication primitives and access control for tuliprox"
[lints]
workspace = true
[package.metadata.cargo-machete]
# `rust-argon2` is imported as `argon2::` (crate rename via `package` field is
# not used, the crate name in code differs from the dependency name), so
# cargo-machete does not recognise the usage.
ignored = ["rust-argon2"]
[dependencies]
shared = { workspace = true }
tuliprox-core = { workspace = true }
tuliprox-repository = { workspace = true }
arc-swap.workspace = true
axum = { version = "0.8.9", features = ["macros", "default", "ws"] }
base64.workspace = true
blake3.workspace = true
chrono.workspace = true
dashmap.workspace = true
jsonwebtoken = { version = "10.4.0", default-features = false, features = ["aws_lc_rs"] }
log.workspace = true
rand = "0.9.5"
rust-argon2 = "3.0.0"
serde_json = { workspace = true, features = ["raw_value", "preserve_order"] }
thiserror.workspace = true
rpassword = "7.5.4"
zeroize.workspace = true