2019-01-05 22:19:25 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-router"
|
2021-02-06 20:50:48 +01:00
|
|
|
version = "0.2.7"
|
2019-01-05 22:19:25 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.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"]
|
2019-01-05 22:19:25 +01:00
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
2021-02-02 03:07:58 +01:00
|
|
|
documentation = "https://docs.rs/actix-router"
|
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]
|
2019-12-31 09:53:30 +01:00
|
|
|
regex = "1.3.1"
|
|
|
|
serde = "1.0.104"
|
2021-01-09 15:13:16 +01:00
|
|
|
bytestring = ">=0.1.5, <2"
|
2019-12-31 10:14:53 +01:00
|
|
|
log = "0.4.8"
|
2020-12-30 23:11:50 +01:00
|
|
|
http = { version = "0.2.2", optional = true }
|
2019-01-05 22:19:25 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-12-30 23:11:50 +01:00
|
|
|
http = "0.2.2"
|
2019-01-05 22:19:25 +01:00
|
|
|
serde_derive = "1.0"
|