1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-02-17 17:03:29 +01:00
actix-net/actix-router/Cargo.toml

32 lines
674 B
TOML
Raw Normal View History

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