2023-06-20 21:02:27 +03:00
|
|
|
[package]
|
|
|
|
name = "urouter"
|
2024-03-17 15:45:50 +03:00
|
|
|
version = "0.7.0"
|
2023-06-20 21:02:27 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/ivabus/urouter"
|
2023-12-22 13:46:07 +03:00
|
|
|
description = "Small HTTP router"
|
2023-06-20 21:02:27 +03:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-18 13:59:04 +03:00
|
|
|
rocket = "0.5.0"
|
2024-03-17 15:45:50 +03:00
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
serde_json = "1.0.114"
|
2023-06-20 21:02:27 +03:00
|
|
|
url-escape = "0.1.1"
|
2024-03-17 15:45:50 +03:00
|
|
|
once_cell = "1.19"
|
|
|
|
clap = { version = "4.5.3", features = ["derive"] }
|
|
|
|
regex = "1.10.3"
|
|
|
|
ureq = { version = "2.9.6", features = ["brotli", "native-certs"] }
|
|
|
|
users = "0.11.0"
|