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"
|
2019-01-29 18:14:00 +00:00
|
|
|
repository = "https://github.com/actix/actix-http.git"
|
2019-03-23 16:40:20 +00:00
|
|
|
documentation = "https://docs.rs/actix-http/"
|
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"]
|
2019-03-23 16:40:20 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2018-04-13 03:31:58 +00:00
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
2018-12-06 22:32:52 +00:00
|
|
|
edition = "2018"
|
2017-09-30 16:10:03 +00:00
|
|
|
|
2018-06-22 07:33:32 +00:00
|
|
|
[package.metadata.docs.rs]
|
2019-03-23 16:40:20 +00:00
|
|
|
features = ["ssl", "fail", "cookie"]
|
2018-06-22 07:33:32 +00:00
|
|
|
|
2017-10-16 20:16:54 +00:00
|
|
|
[badges]
|
2019-01-29 18:17:38 +00:00
|
|
|
travis-ci = { repository = "actix/actix-http", branch = "master" }
|
2019-03-23 16:40:20 +00:00
|
|
|
# appveyor = { repository = "fafhrd91/actix-http-b1qsn" }
|
2019-01-29 18:17:38 +00:00
|
|
|
codecov = { repository = "actix/actix-http", 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]
|
2019-03-23 16:40:20 +00:00
|
|
|
default = []
|
2018-03-07 07:38:58 +00:00
|
|
|
|
2018-11-12 07:12:54 +00:00
|
|
|
# openssl
|
2019-03-13 21:41:40 +00:00
|
|
|
ssl = ["openssl", "actix-connect/ssl"]
|
2018-11-12 07:12:54 +00:00
|
|
|
|
2019-03-23 16:40:20 +00:00
|
|
|
# cookies integration
|
|
|
|
cookies = ["cookie"]
|
|
|
|
|
|
|
|
# failure integration. actix does not use failure anymore
|
2019-03-06 19:45:33 +00:00
|
|
|
fail = ["failure"]
|
|
|
|
|
2017-09-30 16:10:03 +00:00
|
|
|
[dependencies]
|
2019-03-12 23:55:16 +00:00
|
|
|
actix-service = "0.3.4"
|
2019-03-07 06:56:34 +00:00
|
|
|
actix-codec = "0.1.1"
|
2019-03-15 05:56:06 +00:00
|
|
|
actix-connect = "0.1.0"
|
2019-03-12 23:55:16 +00:00
|
|
|
actix-utils = "0.3.4"
|
|
|
|
actix-server-config = "0.1.0"
|
2018-12-11 02:08:33 +00:00
|
|
|
|
2019-01-27 06:09:26 +00:00
|
|
|
base64 = "0.10"
|
2018-12-20 02:34:56 +00:00
|
|
|
backtrace = "0.3"
|
2018-01-28 06:03:03 +00:00
|
|
|
bitflags = "1.0"
|
2018-12-11 02:08:33 +00:00
|
|
|
bytes = "0.4"
|
|
|
|
byteorder = "1.2"
|
2019-02-02 04:22:43 +00:00
|
|
|
derive_more = "0.14"
|
2018-12-11 02:08:33 +00:00
|
|
|
encoding = "0.2"
|
|
|
|
futures = "0.1"
|
2019-01-27 19:40:26 +00:00
|
|
|
hashbrown = "0.1.8"
|
|
|
|
h2 = "0.1.16"
|
2019-03-14 18:52:52 +00:00
|
|
|
http = "0.1.16"
|
2018-07-05 07:21:33 +00:00
|
|
|
httparse = "1.3"
|
2018-11-12 07:12:54 +00:00
|
|
|
indexmap = "1.0"
|
2019-02-07 21:24:24 +00:00
|
|
|
lazy_static = "1.0"
|
|
|
|
language-tags = "0.2"
|
2018-01-28 06:03:03 +00:00
|
|
|
log = "0.4"
|
2017-10-19 06:43:50 +00:00
|
|
|
mime = "0.3"
|
2018-12-11 02:08:33 +00:00
|
|
|
percent-encoding = "1.0"
|
2019-01-27 06:09:26 +00:00
|
|
|
rand = "0.6"
|
2019-02-07 21:24:24 +00:00
|
|
|
regex = "1.0"
|
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-11-12 07:12:54 +00:00
|
|
|
slab = "0.4"
|
2018-12-11 02:08:33 +00:00
|
|
|
serde_urlencoded = "0.5.3"
|
|
|
|
time = "0.1"
|
2019-03-13 21:41:40 +00:00
|
|
|
tokio-tcp = "0.1.3"
|
2018-05-25 04:03:16 +00:00
|
|
|
tokio-timer = "0.2"
|
2019-01-27 18:59:07 +00:00
|
|
|
tokio-current-thread = "0.1"
|
2019-01-29 18:34:27 +00:00
|
|
|
trust-dns-resolver = { version="0.11.0-alpha.2", default-features = false }
|
2018-11-12 07:12:54 +00:00
|
|
|
|
2019-03-23 16:40:20 +00:00
|
|
|
# optional deps
|
|
|
|
cookie = { version="0.11", features=["percent-encode"], optional = true }
|
2019-03-06 19:45:33 +00:00
|
|
|
failure = { version = "0.1.5", optional = true }
|
2019-03-23 16:40:20 +00:00
|
|
|
openssl = { version="0.10", optional = true }
|
2019-03-06 19:45:33 +00:00
|
|
|
|
2017-10-22 05:59:09 +00:00
|
|
|
[dev-dependencies]
|
2019-03-26 04:52:45 +00:00
|
|
|
actix-rt = "0.2.1"
|
2019-03-13 00:04:08 +00:00
|
|
|
actix-server = { version = "0.4.0", features=["ssl"] }
|
2019-03-15 05:56:06 +00:00
|
|
|
actix-connect = { version = "0.1.0", features=["ssl"] }
|
2019-02-06 20:22:40 +00:00
|
|
|
actix-http-test = { path="test-server", features=["ssl"] }
|
2019-03-09 15:37:23 +00:00
|
|
|
|
2019-01-27 06:09:26 +00:00
|
|
|
env_logger = "0.6"
|
2017-12-02 05:29:22 +00:00
|
|
|
serde_derive = "1.0"
|
2019-02-06 20:22:40 +00:00
|
|
|
openssl = { version="0.10" }
|
2019-03-12 23:55:16 +00:00
|
|
|
tokio-tcp = "0.1"
|