mirror of
https://github.com/ivabus/urouter
synced 2024-11-24 17:35:11 +03:00
Ivan Bushchik
886c4cf2fa
- Use serde_json::from_reader in alias list initialization - Compile all regexes in initialization, not while recieving first triggering request - Count regex compilation time - Specify version in Server responce header Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
17 lines
380 B
TOML
17 lines
380 B
TOML
[package]
|
|
name = "urouter"
|
|
version = "0.5.2"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
repository = "https://github.com/ivabus/urouter"
|
|
description = "Small HTTP router"
|
|
|
|
|
|
[dependencies]
|
|
rocket = "0.5.0"
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
serde_json = "1.0.108"
|
|
url-escape = "0.1.1"
|
|
smurf = "0.3.0"
|
|
clap = { version = "4.4.11", features = ["derive"] }
|
|
regex = "1.10.2"
|