18 lines
491 B
TOML
18 lines
491 B
TOML
[package]
|
|
name = "rustproxy-security"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
description = "IP filtering, rate limiting, and authentication for RustProxy"
|
|
|
|
[dependencies]
|
|
rustproxy-config = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
ipnet = { workspace = true }
|
|
jsonwebtoken = { workspace = true }
|
|
base64 = { workspace = true }
|
|
tracing = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true }
|