2017-09-30 09:10:03 -07:00
|
|
|
[package]
|
2018-10-04 17:00:27 -07:00
|
|
|
name = "actix-http"
|
|
|
|
version = "0.1.0"
|
2017-09-30 09:10:03 -07:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2018-10-04 17:00:27 -07:00
|
|
|
description = "Actix http"
|
2017-09-30 09:10:03 -07:00
|
|
|
readme = "README.md"
|
2017-12-17 12:35:04 -08:00
|
|
|
keywords = ["http", "web", "framework", "async", "futures"]
|
2018-05-24 08:55:10 -07:00
|
|
|
homepage = "https://actix.rs"
|
2019-01-29 10:14:00 -08:00
|
|
|
repository = "https://github.com/actix/actix-http.git"
|
|
|
|
documentation = "https://actix.rs/api/actix-http/stable/actix_http/"
|
2017-11-06 14:56:38 -08:00
|
|
|
categories = ["network-programming", "asynchronous",
|
2018-02-27 23:51:57 -08:00
|
|
|
"web-programming::http-server",
|
|
|
|
"web-programming::websocket"]
|
2019-02-07 21:50:20 -08:00
|
|
|
license = "Apache-2.0"
|
2018-04-12 20:31:58 -07:00
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
2018-12-06 14:32:52 -08:00
|
|
|
edition = "2018"
|
2017-09-30 09:10:03 -07:00
|
|
|
|
2018-06-22 09:33:32 +02:00
|
|
|
[package.metadata.docs.rs]
|
2018-10-06 21:14:02 -07:00
|
|
|
features = ["session"]
|
2018-06-22 09:33:32 +02:00
|
|
|
|
2017-10-16 13:16:54 -07:00
|
|
|
[badges]
|
2019-01-29 10:17:38 -08:00
|
|
|
travis-ci = { repository = "actix/actix-http", branch = "master" }
|
|
|
|
appveyor = { repository = "fafhrd91/actix-http-b1qsn" }
|
|
|
|
codecov = { repository = "actix/actix-http", branch = "master", service = "github" }
|
2017-10-16 13:16:54 -07:00
|
|
|
|
2017-09-30 09:10:03 -07:00
|
|
|
[lib]
|
2018-10-04 17:00:27 -07:00
|
|
|
name = "actix_http"
|
2017-09-30 09:10:03 -07:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2017-10-22 21:52:01 -07:00
|
|
|
[features]
|
2019-03-06 11:45:33 -08:00
|
|
|
default = ["fail"]
|
2018-03-07 15:38:58 +08:00
|
|
|
|
2018-11-11 23:12:54 -08:00
|
|
|
# openssl
|
2019-02-18 18:40:40 -08:00
|
|
|
ssl = ["openssl", "actix-connector/ssl"]
|
2018-11-11 23:12:54 -08:00
|
|
|
|
2019-03-06 11:45:33 -08:00
|
|
|
# failure integration. it is on by default, it will be off in future versions
|
|
|
|
# actix itself does not use failure anymore
|
|
|
|
fail = ["failure"]
|
|
|
|
|
2017-09-30 09:10:03 -07:00
|
|
|
[dependencies]
|
2019-03-09 14:33:33 -08:00
|
|
|
actix-service = "0.3.3"
|
2019-03-06 22:56:34 -08:00
|
|
|
actix-codec = "0.1.1"
|
2019-03-09 14:33:33 -08:00
|
|
|
actix-connector = "0.3.0"
|
|
|
|
actix-utils = "0.3.3"
|
2019-03-09 07:37:23 -08:00
|
|
|
actix-server-config = { git="https://github.com/actix/actix-net.git" }
|
2018-12-10 18:08:33 -08:00
|
|
|
|
2019-01-26 22:09:26 -08:00
|
|
|
base64 = "0.10"
|
2018-12-19 18:34:56 -08:00
|
|
|
backtrace = "0.3"
|
2018-01-27 22:03:03 -08:00
|
|
|
bitflags = "1.0"
|
2018-12-10 18:08:33 -08:00
|
|
|
bytes = "0.4"
|
|
|
|
byteorder = "1.2"
|
|
|
|
cookie = { version="0.11", features=["percent-encode"] }
|
2019-02-01 20:22:43 -08:00
|
|
|
derive_more = "0.14"
|
2018-12-10 18:08:33 -08:00
|
|
|
encoding = "0.2"
|
|
|
|
futures = "0.1"
|
2019-01-27 11:40:26 -08:00
|
|
|
hashbrown = "0.1.8"
|
|
|
|
h2 = "0.1.16"
|
2018-10-10 13:23:25 -07:00
|
|
|
http = "0.1.8"
|
2018-07-05 13:21:33 +06:00
|
|
|
httparse = "1.3"
|
2018-11-11 23:12:54 -08:00
|
|
|
indexmap = "1.0"
|
2019-02-07 13:24:24 -08:00
|
|
|
lazy_static = "1.0"
|
|
|
|
language-tags = "0.2"
|
2018-01-27 22:03:03 -08:00
|
|
|
log = "0.4"
|
2017-10-18 23:43:50 -07:00
|
|
|
mime = "0.3"
|
2018-12-10 18:08:33 -08:00
|
|
|
percent-encoding = "1.0"
|
2019-01-26 22:09:26 -08:00
|
|
|
rand = "0.6"
|
2019-02-07 13:24:24 -08:00
|
|
|
regex = "1.0"
|
2017-11-15 20:06:28 -10:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2018-02-27 20:32:51 -08:00
|
|
|
sha1 = "0.6"
|
2018-11-11 23:12:54 -08:00
|
|
|
slab = "0.4"
|
2018-12-10 18:08:33 -08:00
|
|
|
serde_urlencoded = "0.5.3"
|
|
|
|
time = "0.1"
|
2018-05-24 21:03:16 -07:00
|
|
|
tokio-timer = "0.2"
|
2019-01-27 10:59:07 -08:00
|
|
|
tokio-current-thread = "0.1"
|
2019-01-29 10:34:27 -08:00
|
|
|
trust-dns-resolver = { version="0.11.0-alpha.2", default-features = false }
|
2018-11-11 23:12:54 -08:00
|
|
|
|
|
|
|
# openssl
|
|
|
|
openssl = { version="0.10", optional = true }
|
|
|
|
|
2019-03-06 11:45:33 -08:00
|
|
|
# failure is optional
|
|
|
|
failure = { version = "0.1.5", optional = true }
|
|
|
|
|
2017-10-21 22:59:09 -07:00
|
|
|
[dev-dependencies]
|
2019-03-06 10:30:17 -08:00
|
|
|
actix-rt = "0.2.0"
|
2019-03-04 20:46:33 -08:00
|
|
|
#actix-server = { version = "0.3.0", features=["ssl"] }
|
|
|
|
actix-server = { git="https://github.com/actix/actix-net.git", features=["ssl"] }
|
2019-03-09 14:33:33 -08:00
|
|
|
actix-connector = { version = "0.3.0", features=["ssl"] }
|
2019-02-06 12:22:40 -08:00
|
|
|
actix-http-test = { path="test-server", features=["ssl"] }
|
2019-03-09 07:37:23 -08:00
|
|
|
|
2019-01-26 22:09:26 -08:00
|
|
|
env_logger = "0.6"
|
2017-12-01 21:29:22 -08:00
|
|
|
serde_derive = "1.0"
|
2019-02-06 12:22:40 -08:00
|
|
|
openssl = { version="0.10" }
|