2019-01-05 22:19:25 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-router"
|
2021-06-06 19:48:27 +02:00
|
|
|
version = "0.4.0"
|
2021-07-16 20:43:48 +02:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
|
|
"Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com>",
|
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
|
|
]
|
2020-09-21 23:46:59 +02:00
|
|
|
description = "Resource path matching library"
|
2021-02-06 20:50:48 +01:00
|
|
|
keywords = ["actix", "router", "routing"]
|
2021-07-16 20:43:48 +02:00
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
2020-07-14 12:11:30 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-01-05 22:19:25 +01:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_router"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["http"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-01-09 15:13:16 +01:00
|
|
|
bytestring = ">=0.1.5, <2"
|
2021-07-17 02:07:07 +02:00
|
|
|
firestorm = "0.4"
|
2021-07-16 20:43:48 +02:00
|
|
|
http = { version = "0.2.3", optional = true }
|
2021-07-17 02:06:23 +02:00
|
|
|
log = "0.4"
|
|
|
|
regex = "1.5"
|
|
|
|
serde = "1"
|
2019-01-05 22:19:25 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-07-17 02:07:07 +02:00
|
|
|
criterion = { version = "0.3", features = ["html_reports"] }
|
|
|
|
firestorm = { version = "0.4", features = ["enable_system_time"] }
|
2021-07-16 20:43:48 +02:00
|
|
|
http = "0.2.3"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
2021-07-17 02:06:23 +02:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "router"
|
|
|
|
harness = false
|