2021-08-06 21:42:31 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-router"
|
2024-05-19 11:09:46 +00:00
|
|
|
version = "0.5.3"
|
2021-08-06 21:42:31 +00: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"]
|
2023-11-06 23:54:38 +00:00
|
|
|
repository = "https://github.com/actix/actix-web"
|
2021-08-06 21:42:31 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-07-02 00:09:15 +00:00
|
|
|
edition = "2021"
|
2021-08-06 21:42:31 +00:00
|
|
|
|
2024-06-10 02:39:06 +00:00
|
|
|
[package.metadata.cargo_check_external_types]
|
|
|
|
allowed_external_types = [
|
|
|
|
"http::*",
|
|
|
|
"serde::*",
|
|
|
|
]
|
2021-08-06 21:42:31 +00:00
|
|
|
|
|
|
|
[features]
|
2024-03-03 15:50:16 +00:00
|
|
|
default = ["http", "unicode"]
|
|
|
|
http = ["dep:http"]
|
|
|
|
unicode = ["dep:regex"]
|
2021-08-06 21:42:31 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bytestring = ">=0.1.5, <2"
|
2024-03-03 15:50:16 +00:00
|
|
|
cfg-if = "1"
|
2023-03-02 16:21:13 +00:00
|
|
|
http = { version = "0.2.7", optional = true }
|
2024-03-03 15:50:16 +00:00
|
|
|
regex = { version = "1.5", optional = true }
|
|
|
|
regex-lite = "0.1"
|
2021-08-06 21:42:31 +00:00
|
|
|
serde = "1"
|
2022-03-10 03:14:14 +00:00
|
|
|
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
2021-08-06 21:42:31 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-07-02 00:09:15 +00:00
|
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
2023-03-02 16:21:13 +00:00
|
|
|
http = "0.2.7"
|
2021-08-06 21:42:31 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2022-03-28 20:58:35 +00:00
|
|
|
percent-encoding = "2.1"
|
2021-08-06 21:42:31 +00:00
|
|
|
|
2024-07-07 02:54:00 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2021-08-06 21:42:31 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "router"
|
|
|
|
harness = false
|
2024-03-03 15:50:16 +00:00
|
|
|
required-features = ["unicode"]
|
2022-03-28 20:58:35 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "quoter"
|
|
|
|
harness = false
|