17 lines
433 B
TOML
17 lines
433 B
TOML
|
|
[package]
|
||
|
|
name = "rustproxy-routing"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
description = "Route matching engine for RustProxy"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
rustproxy-config = { workspace = true }
|
||
|
|
glob-match = { workspace = true }
|
||
|
|
ipnet = { workspace = true }
|
||
|
|
regex = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
arc-swap = { workspace = true }
|