1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/Cargo.toml

61 lines
1.3 KiB
TOML
Raw Normal View History

2017-09-30 16:10:03 +00:00
[package]
2017-10-14 14:59:35 +00:00
name = "actix-web"
2017-09-30 16:10:03 +00:00
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2017-10-14 14:59:35 +00:00
description = "Actix web framework"
2017-09-30 16:10:03 +00:00
readme = "README.md"
2017-10-14 14:59:35 +00:00
keywords = ["actor", "http", "web"]
homepage = "https://github.com/fafhrd91/actix-web"
repository = "https://github.com/fafhrd91/actix-web.git"
2017-09-30 16:10:03 +00:00
categories = ["network-programming", "asynchronous"]
license = "Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
2017-10-16 20:16:54 +00:00
[badges]
travis-ci = { repository = "fafhrd91/actix-web", branch = "master" }
appveyor = { repository = "fafhrd91/actix-web" }
codecov = { repository = "fafhrd91/actix-web", branch = "master", service = "github" }
2017-09-30 16:10:03 +00:00
[lib]
2017-10-14 14:59:35 +00:00
name = "actix_web"
2017-09-30 16:10:03 +00:00
path = "src/lib.rs"
[features]
2017-10-19 23:41:21 +00:00
default = []
# Enable nightly features
nightly = []
2017-09-30 16:10:03 +00:00
[dependencies]
2017-10-19 06:43:50 +00:00
log = "0.3"
2017-10-07 04:48:14 +00:00
time = "0.1"
http = "0.1"
2017-10-08 04:48:00 +00:00
httparse = "0.1"
http-range = "0.1"
2017-10-19 06:43:50 +00:00
mime = "0.3"
2017-10-16 08:19:23 +00:00
mime_guess = "1.8"
cookie = { version="0.10", features=["percent-encode"] }
regex = "0.2"
2017-10-08 04:48:00 +00:00
slab = "0.4"
sha1 = "0.2"
2017-10-08 21:56:51 +00:00
url = "1.5"
2017-10-07 04:48:14 +00:00
2017-09-30 16:10:03 +00:00
# tokio
bytes = "0.4"
futures = "0.1"
tokio-core = "0.1"
tokio-io = "0.1"
2017-10-07 04:48:14 +00:00
tokio-proto = "0.1"
2017-09-30 16:10:03 +00:00
[dependencies.actix]
2017-10-21 00:16:17 +00:00
#path = "../actix"
2017-10-19 23:22:21 +00:00
git = "https://github.com/fafhrd91/actix.git"
#version = "0.2"
2017-10-16 20:16:54 +00:00
default-features = false
features = []
2017-09-30 16:10:03 +00:00
[profile.release]
lto = true
opt-level = 3
debug = true