2019-01-05 22:19:25 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-router"
|
2019-05-15 19:21:29 +02:00
|
|
|
version = "0.1.4"
|
2019-01-05 22:19:25 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2019-05-15 19:21:29 +02:00
|
|
|
description = "Path router"
|
2019-01-05 22:19:25 +01:00
|
|
|
keywords = ["actix"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
2019-04-04 06:40:21 +02:00
|
|
|
documentation = "https://docs.rs/actix-router/"
|
2019-01-05 22:19:25 +01:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
|
|
edition = "2018"
|
2019-04-04 06:40:21 +02:00
|
|
|
workspace = ".."
|
2019-01-05 22:19:25 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_router"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["http"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bytes = "0.4"
|
|
|
|
regex = "1.0"
|
|
|
|
serde = "1.0.80"
|
2019-04-04 06:40:21 +02:00
|
|
|
string = "0.2.0"
|
|
|
|
log = "0.4"
|
2019-01-05 22:19:25 +01:00
|
|
|
http = { version="0.1.14", optional=true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-02-01 22:25:56 +01:00
|
|
|
http = "0.1.14"
|
2019-01-05 22:19:25 +01:00
|
|
|
serde_derive = "1.0"
|