mirror of
https://github.com/euzu/tuliprox.git
synced 2026-09-16 14:12:14 +02:00
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.
29 lines
807 B
TOML
29 lines
807 B
TOML
[package]
|
|
name = "tuliprox-parser"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
description = "Provider wire-format parsing and URL building for tuliprox"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
shared = { workspace = true }
|
|
tuliprox-core = { workspace = true }
|
|
chrono.workspace = true
|
|
chrono-tz = "0.10.4"
|
|
indexmap.workspace = true
|
|
log.workspace = true
|
|
regex.workspace = true
|
|
serde.workspace = true
|
|
serde_json = { workspace = true, features = ["raw_value", "preserve_order"] }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "fs", "time", "macros"] }
|
|
tokio-util = { version = "0.7.19", features = ["io", "io-util"] }
|
|
url.workspace = true
|
|
|
|
[dev-dependencies]
|
|
rand = "0.9.5"
|
|
tempfile = "3.27.0"
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|