1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-23 16:21:06 +01:00
actix-web/actix-router/Cargo.toml

39 lines
933 B
TOML
Raw Normal View History

2021-08-06 23:42:31 +02:00
[package]
name = "actix-router"
version = "0.5.0"
2021-08-06 23:42:31 +02:00
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
description = "Resource path matching and router"
keywords = ["actix", "router", "routing"]
repository = "https://github.com/actix/actix-web.git"
2021-08-06 23:42:31 +02:00
license = "MIT OR Apache-2.0"
edition = "2018"
[lib]
name = "actix_router"
path = "src/lib.rs"
[features]
default = ["http"]
[dependencies]
bytestring = ">=0.1.5, <2"
2021-12-22 09:43:38 +01:00
firestorm = "0.5"
2021-08-06 23:42:31 +02:00
http = { version = "0.2.3", optional = true }
regex = "1.5"
serde = "1"
2022-03-10 04:14:14 +01:00
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
2021-08-06 23:42:31 +02:00
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
2021-12-22 09:43:38 +01:00
firestorm = { version = "0.5", features = ["enable_system_time"] }
2021-11-15 05:03:33 +01:00
http = "0.2.5"
2021-08-06 23:42:31 +02:00
serde = { version = "1", features = ["derive"] }
[[bench]]
name = "router"
harness = false