2017-09-30 18:10:03 +02:00
|
|
|
[package]
|
2017-10-14 16:59:35 +02:00
|
|
|
name = "actix-web"
|
2018-05-24 18:24:04 +02:00
|
|
|
version = "0.7.0-dev"
|
2017-09-30 18:10:03 +02:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2018-04-12 18:54:35 +02:00
|
|
|
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
|
2017-09-30 18:10:03 +02:00
|
|
|
readme = "README.md"
|
2017-12-17 21:35:04 +01:00
|
|
|
keywords = ["http", "web", "framework", "async", "futures"]
|
2018-05-24 17:55:10 +02:00
|
|
|
homepage = "https://actix.rs"
|
2017-10-23 18:16:13 +02:00
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
2017-10-26 15:12:23 +02:00
|
|
|
documentation = "https://docs.rs/actix-web/"
|
2017-11-06 23:56:38 +01:00
|
|
|
categories = ["network-programming", "asynchronous",
|
2018-02-28 08:51:57 +01:00
|
|
|
"web-programming::http-server",
|
|
|
|
"web-programming::http-client",
|
|
|
|
"web-programming::websocket"]
|
2017-12-17 19:08:44 +01:00
|
|
|
license = "MIT/Apache-2.0"
|
2018-04-13 05:31:58 +02:00
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
2017-10-26 15:12:23 +02:00
|
|
|
build = "build.rs"
|
2017-09-30 18:10:03 +02:00
|
|
|
|
2017-10-16 22:16:54 +02:00
|
|
|
[badges]
|
2017-10-23 18:16:13 +02:00
|
|
|
travis-ci = { repository = "actix/actix-web", branch = "master" }
|
2017-11-09 05:25:14 +01:00
|
|
|
appveyor = { repository = "fafhrd91/actix-web-hdy9d" }
|
2017-10-23 18:16:13 +02:00
|
|
|
codecov = { repository = "actix/actix-web", branch = "master", service = "github" }
|
2017-10-16 22:16:54 +02:00
|
|
|
|
2017-09-30 18:10:03 +02:00
|
|
|
[lib]
|
2017-10-14 16:59:35 +02:00
|
|
|
name = "actix_web"
|
2017-09-30 18:10:03 +02:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2017-10-23 06:52:01 +02:00
|
|
|
[features]
|
2018-04-24 18:29:15 +02:00
|
|
|
default = ["session", "brotli", "flate2-c"]
|
2017-10-23 06:52:01 +02:00
|
|
|
|
2017-11-02 00:34:58 +01:00
|
|
|
# tls
|
|
|
|
tls = ["native-tls", "tokio-tls"]
|
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
# openssl
|
2018-04-10 20:07:54 +02:00
|
|
|
alpn = ["openssl", "tokio-openssl"]
|
2017-11-04 20:33:14 +01:00
|
|
|
|
2018-04-24 18:32:19 +02:00
|
|
|
# sessions feature, session require "ring" crate and c compiler
|
2018-03-07 08:38:58 +01:00
|
|
|
session = ["cookie/secure"]
|
|
|
|
|
2018-04-24 18:32:19 +02:00
|
|
|
# brotli encoding, requires c compiler
|
2018-03-14 01:21:22 +01:00
|
|
|
brotli = ["brotli2"]
|
|
|
|
|
2018-04-24 18:29:15 +02:00
|
|
|
# miniz-sys backend for flate2 crate
|
|
|
|
flate2-c = ["flate2/miniz-sys"]
|
|
|
|
|
2018-04-24 18:32:19 +02:00
|
|
|
# rust backend for flate2 crate
|
2018-04-24 18:29:15 +02:00
|
|
|
flate2-rust = ["flate2/rust_backend"]
|
|
|
|
|
2018-06-05 17:59:30 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["tls", "alpn", "session", "brotli", "flate2-c"]
|
|
|
|
|
2017-09-30 18:10:03 +02:00
|
|
|
[dependencies]
|
2018-06-18 05:18:03 +02:00
|
|
|
actix = "0.6"
|
2018-01-28 07:03:03 +01:00
|
|
|
base64 = "0.9"
|
|
|
|
bitflags = "1.0"
|
|
|
|
failure = "0.1.1"
|
2018-01-12 21:31:33 +01:00
|
|
|
h2 = "0.1"
|
2018-06-16 23:22:08 +02:00
|
|
|
fnv = "1.0.5"
|
2018-02-28 23:16:55 +01:00
|
|
|
http = "^0.1.5"
|
2018-01-12 01:47:55 +01:00
|
|
|
httparse = "1.2"
|
2018-01-28 07:03:03 +01:00
|
|
|
libc = "0.2"
|
|
|
|
log = "0.4"
|
2017-10-19 08:43:50 +02:00
|
|
|
mime = "0.3"
|
2018-03-06 09:43:25 +01:00
|
|
|
mime_guess = "2.0.0-alpha"
|
2018-01-28 07:03:03 +01:00
|
|
|
num_cpus = "1.0"
|
|
|
|
percent-encoding = "1.0"
|
2018-05-25 06:03:16 +02:00
|
|
|
rand = "0.5"
|
2018-05-04 21:25:06 +02:00
|
|
|
regex = "1.0"
|
2017-11-16 07:06:28 +01:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2018-03-27 00:58:30 +02:00
|
|
|
serde_urlencoded = "0.5"
|
2018-02-28 05:32:51 +01:00
|
|
|
sha1 = "0.6"
|
2017-12-08 01:22:26 +01:00
|
|
|
smallvec = "0.6"
|
2018-01-28 07:03:03 +01:00
|
|
|
time = "0.1"
|
2018-02-27 20:31:54 +01:00
|
|
|
encoding = "0.2"
|
2018-03-06 09:43:25 +01:00
|
|
|
language-tags = "0.2"
|
2018-04-02 02:37:22 +02:00
|
|
|
lazy_static = "1.0"
|
2018-06-18 05:18:03 +02:00
|
|
|
parking_lot = "0.6"
|
2018-02-27 20:31:54 +01:00
|
|
|
url = { version="1.7", features=["query_encoding"] }
|
2018-03-07 08:38:58 +01:00
|
|
|
cookie = { version="0.10", features=["percent-encode"] }
|
2018-03-14 01:21:22 +01:00
|
|
|
brotli2 = { version="^0.3.2", optional = true }
|
2018-04-24 21:24:04 +02:00
|
|
|
flate2 = { version="1.0", optional = true, default-features = false }
|
2017-11-16 07:06:28 +01:00
|
|
|
|
2017-12-27 20:22:27 +01:00
|
|
|
# io
|
2018-02-10 02:20:28 +01:00
|
|
|
mio = "^0.6.13"
|
2017-12-27 20:22:27 +01:00
|
|
|
net2 = "0.2"
|
2017-09-30 18:10:03 +02:00
|
|
|
bytes = "0.4"
|
2018-02-10 02:20:28 +01:00
|
|
|
byteorder = "1"
|
2017-09-30 18:10:03 +02:00
|
|
|
futures = "0.1"
|
2018-03-07 23:56:53 +01:00
|
|
|
futures-cpupool = "0.1"
|
2018-05-01 04:51:55 +02:00
|
|
|
slab = "0.4"
|
2018-05-25 06:03:16 +02:00
|
|
|
tokio = "0.1"
|
2017-09-30 18:10:03 +02:00
|
|
|
tokio-io = "0.1"
|
2018-05-25 06:03:16 +02:00
|
|
|
tokio-tcp = "0.1"
|
|
|
|
tokio-timer = "0.2"
|
|
|
|
tokio-reactor = "0.1"
|
2017-11-02 20:54:09 +01:00
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
# native-tls
|
2017-11-02 00:34:58 +01:00
|
|
|
native-tls = { version="0.1", optional = true }
|
|
|
|
tokio-tls = { version="0.1", optional = true }
|
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
# openssl
|
2018-01-25 19:24:04 +01:00
|
|
|
openssl = { version="0.10", optional = true }
|
|
|
|
tokio-openssl = { version="0.2", optional = true }
|
2017-11-04 20:33:14 +01:00
|
|
|
|
2017-10-22 07:59:09 +02:00
|
|
|
[dev-dependencies]
|
2018-01-21 05:12:24 +01:00
|
|
|
env_logger = "0.5"
|
2017-12-02 06:29:22 +01:00
|
|
|
serde_derive = "1.0"
|
2017-10-26 15:12:23 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2017-11-24 19:28:43 +01:00
|
|
|
version_check = "0.1"
|
2017-10-22 07:59:09 +02:00
|
|
|
|
2017-09-30 18:10:03 +02:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
opt-level = 3
|
2018-02-15 22:59:25 +01:00
|
|
|
codegen-units = 1
|
2018-01-01 06:55:25 +01:00
|
|
|
|
|
|
|
[workspace]
|
2018-01-01 07:22:56 +01:00
|
|
|
members = [
|
|
|
|
"./",
|
|
|
|
]
|