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