1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/actix-router/Cargo.toml

47 lines
1 KiB
TOML
Raw Normal View History

2021-08-06 21:42:31 +00:00
[package]
name = "actix-router"
version = "0.5.2"
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
[lib]
name = "actix_router"
path = "src/lib.rs"
[features]
default = ["http", "unicode"]
http = ["dep:http"]
unicode = ["dep:regex"]
2021-08-06 21:42:31 +00:00
[dependencies]
bytestring = ">=0.1.5, <2"
cfg-if = "1"
2023-03-02 16:21:13 +00:00
http = { version = "0.2.7", optional = true }
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"] }
percent-encoding = "2.1"
2021-08-06 21:42:31 +00:00
[[bench]]
name = "router"
harness = false
required-features = ["unicode"]
[[bench]]
name = "quoter"
harness = false