1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 04:52:58 +01:00
actix-net/router/Cargo.toml

30 lines
588 B
TOML
Raw Normal View History

2019-01-05 22:19:25 +01:00
[package]
name = "actix-router"
version = "0.2.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"
documentation = "https://docs.rs/actix-router/"
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]
regex = "1.3.1"
serde = "1.0.104"
bytestring = "0.1.2"
log = "0.4.8"
2019-12-05 11:40:24 +01:00
http = { version="0.2.0", optional=true }
2019-01-05 22:19:25 +01:00
[dev-dependencies]
2019-12-05 11:40:24 +01:00
http = "0.2.0"
2019-01-05 22:19:25 +01:00
serde_derive = "1.0"