2017-09-30 16:10:03 +00:00
|
|
|
[package]
|
2018-10-05 00:00:27 +00:00
|
|
|
name = "actix-http"
|
|
|
|
version = "0.1.0"
|
2017-09-30 16:10:03 +00:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2018-10-05 00:00:27 +00:00
|
|
|
description = "Actix http"
|
2017-09-30 16:10:03 +00:00
|
|
|
readme = "README.md"
|
2017-12-17 20:35:04 +00:00
|
|
|
keywords = ["http", "web", "framework", "async", "futures"]
|
2018-05-24 15:55:10 +00:00
|
|
|
homepage = "https://actix.rs"
|
2017-10-23 16:16:13 +00:00
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
2018-07-21 11:19:02 +00:00
|
|
|
documentation = "https://actix.rs/api/actix-web/stable/actix_web/"
|
2017-11-06 22:56:38 +00:00
|
|
|
categories = ["network-programming", "asynchronous",
|
2018-02-28 07:51:57 +00:00
|
|
|
"web-programming::http-server",
|
|
|
|
"web-programming::websocket"]
|
2017-12-17 18:08:44 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2018-04-13 03:31:58 +00:00
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
2017-09-30 16:10:03 +00:00
|
|
|
|
2018-06-22 07:33:32 +00:00
|
|
|
[package.metadata.docs.rs]
|
2018-10-07 04:14:02 +00:00
|
|
|
features = ["session"]
|
2018-06-22 07:33:32 +00:00
|
|
|
|
2017-10-16 20:16:54 +00:00
|
|
|
[badges]
|
2017-10-23 16:16:13 +00:00
|
|
|
travis-ci = { repository = "actix/actix-web", branch = "master" }
|
2017-11-09 04:25:14 +00:00
|
|
|
appveyor = { repository = "fafhrd91/actix-web-hdy9d" }
|
2017-10-23 16:16:13 +00:00
|
|
|
codecov = { repository = "actix/actix-web", branch = "master", service = "github" }
|
2017-10-16 20:16:54 +00:00
|
|
|
|
2017-09-30 16:10:03 +00:00
|
|
|
[lib]
|
2018-10-05 00:00:27 +00:00
|
|
|
name = "actix_http"
|
2017-09-30 16:10:03 +00:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2017-10-23 04:52:01 +00:00
|
|
|
[features]
|
2018-10-05 14:02:09 +00:00
|
|
|
default = ["session", "cell"]
|
2017-10-23 04:52:01 +00:00
|
|
|
|
2018-04-24 16:32:19 +00:00
|
|
|
# sessions feature, session require "ring" crate and c compiler
|
2018-03-07 07:38:58 +00:00
|
|
|
session = ["cookie/secure"]
|
|
|
|
|
2018-10-03 05:23:51 +00:00
|
|
|
cell = ["actix-net/cell"]
|
|
|
|
|
2017-09-30 16:10:03 +00:00
|
|
|
[dependencies]
|
2018-10-10 20:23:25 +00:00
|
|
|
actix = "0.7.5"
|
|
|
|
actix-net = "0.1.1"
|
2018-10-09 05:04:53 +00:00
|
|
|
#actix-net = { git="https://github.com/actix/actix-net.git" }
|
2018-06-19 06:07:07 +00:00
|
|
|
|
2018-01-28 06:03:03 +00:00
|
|
|
base64 = "0.9"
|
|
|
|
bitflags = "1.0"
|
2018-10-10 20:23:25 +00:00
|
|
|
http = "0.1.8"
|
2018-07-05 07:21:33 +00:00
|
|
|
httparse = "1.3"
|
2018-10-10 20:23:25 +00:00
|
|
|
failure = "0.1.2"
|
2018-01-28 06:03:03 +00:00
|
|
|
log = "0.4"
|
2017-10-19 06:43:50 +00:00
|
|
|
mime = "0.3"
|
2018-05-25 04:03:16 +00:00
|
|
|
rand = "0.5"
|
2017-11-16 06:06:28 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2018-02-28 04:32:51 +00:00
|
|
|
sha1 = "0.6"
|
2018-01-28 06:03:03 +00:00
|
|
|
time = "0.1"
|
2018-02-27 19:31:54 +00:00
|
|
|
encoding = "0.2"
|
2018-04-02 00:37:22 +00:00
|
|
|
lazy_static = "1.0"
|
2018-10-10 20:23:25 +00:00
|
|
|
serde_urlencoded = "0.5.3"
|
2018-10-23 01:18:05 +00:00
|
|
|
|
2018-07-25 15:01:22 +00:00
|
|
|
cookie = { version="0.11", features=["percent-encode"] }
|
2018-10-23 01:18:05 +00:00
|
|
|
percent-encoding = "1.0"
|
|
|
|
url = { version="1.7", features=["query_encoding"] }
|
2017-11-16 06:06:28 +00:00
|
|
|
|
2017-12-27 19:22:27 +00:00
|
|
|
# io
|
|
|
|
net2 = "0.2"
|
2017-09-30 16:10:03 +00:00
|
|
|
bytes = "0.4"
|
2018-06-23 04:29:23 +00:00
|
|
|
byteorder = "1.2"
|
2017-09-30 16:10:03 +00:00
|
|
|
futures = "0.1"
|
2018-10-04 23:22:00 +00:00
|
|
|
tokio-codec = "0.1"
|
2018-10-05 04:14:18 +00:00
|
|
|
tokio = "0.1"
|
2017-09-30 16:10:03 +00:00
|
|
|
tokio-io = "0.1"
|
2018-05-25 04:03:16 +00:00
|
|
|
tokio-tcp = "0.1"
|
|
|
|
tokio-timer = "0.2"
|
2018-09-08 03:46:43 +00:00
|
|
|
tokio-current-thread = "0.1"
|
2017-11-02 19:54:09 +00:00
|
|
|
|
2017-10-22 05:59:09 +00:00
|
|
|
[dev-dependencies]
|
2018-10-05 00:00:27 +00:00
|
|
|
actix-web = "0.7"
|
2018-01-21 04:12:24 +00:00
|
|
|
env_logger = "0.5"
|
2017-12-02 05:29:22 +00:00
|
|
|
serde_derive = "1.0"
|
2017-10-26 13:12:23 +00:00
|
|
|
|
2017-09-30 16:10:03 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
opt-level = 3
|
2018-02-15 21:59:25 +00:00
|
|
|
codegen-units = 1
|