1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 07:02:59 +01:00
actix-net/router/Cargo.toml
2019-12-06 00:10:27 +06:00

33 lines
734 B
TOML

[package]
name = "actix-router"
version = "0.2.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Path router"
keywords = ["actix"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net.git"
documentation = "https://docs.rs/actix-router/"
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
edition = "2018"
workspace = ".."
[lib]
name = "actix_router"
path = "src/lib.rs"
[features]
default = ["http"]
[dependencies]
regex = "1.3.1"
serde = "1.0.80"
# string = "0.2.1"
string = { git = "https://github.com/carllerche/string.git" }
log = "0.4.8"
http = { version="0.2.0", optional=true }
[dev-dependencies]
http = "0.2.0"
serde_derive = "1.0"