2017-09-30 16:10:03 +00:00
|
|
|
[package]
|
2017-10-14 14:59:35 +00:00
|
|
|
name = "actix-web"
|
2019-08-29 03:36:16 +00:00
|
|
|
version = "1.0.7"
|
2017-09-30 16:10:03 +00:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2018-04-12 16:54:35 +00:00
|
|
|
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
|
2017-09-30 16:10:03 +00:00
|
|
|
readme = "README.md"
|
2019-03-28 20:46:26 +00:00
|
|
|
keywords = ["actix", "http", "web", "framework", "async"]
|
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"
|
2019-03-02 22:07:21 +00:00
|
|
|
documentation = "https://docs.rs/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"]
|
2019-03-02 06:51:32 +00:00
|
|
|
edition = "2018"
|
2018-06-22 07:33:32 +00:00
|
|
|
|
2019-04-19 20:54:44 +00:00
|
|
|
[package.metadata.docs.rs]
|
2019-07-18 11:24:12 +00:00
|
|
|
features = ["ssl", "brotli", "flate2-zlib", "secure-cookies", "client", "rust-tls", "uds"]
|
2019-04-19 20:54:44 +00:00
|
|
|
|
2017-10-16 20:16:54 +00:00
|
|
|
[badges]
|
2019-03-02 22:07:21 +00:00
|
|
|
travis-ci = { repository = "actix/actix-web", branch = "master" }
|
|
|
|
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]
|
2017-10-14 14:59:35 +00:00
|
|
|
name = "actix_web"
|
2017-09-30 16:10:03 +00:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2019-03-02 07:59:44 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
".",
|
2019-03-26 04:58:01 +00:00
|
|
|
"awc",
|
2019-03-26 19:31:51 +00:00
|
|
|
"actix-http",
|
2019-06-15 03:34:16 +00:00
|
|
|
"actix-cors",
|
2019-03-07 07:39:08 +00:00
|
|
|
"actix-files",
|
2019-04-10 22:05:03 +00:00
|
|
|
"actix-framed",
|
2019-03-06 02:52:29 +00:00
|
|
|
"actix-session",
|
2019-06-12 09:52:48 +00:00
|
|
|
"actix-identity",
|
2019-04-03 19:28:58 +00:00
|
|
|
"actix-multipart",
|
2019-03-17 20:47:20 +00:00
|
|
|
"actix-web-actors",
|
2019-03-07 19:09:42 +00:00
|
|
|
"actix-web-codegen",
|
2019-04-02 21:04:28 +00:00
|
|
|
"test-server",
|
2019-03-02 07:59:44 +00:00
|
|
|
]
|
|
|
|
|
2017-10-23 04:52:01 +00:00
|
|
|
[features]
|
2019-06-17 06:33:00 +00:00
|
|
|
default = ["brotli", "flate2-zlib", "client", "fail"]
|
2019-03-26 04:58:01 +00:00
|
|
|
|
|
|
|
# http client
|
|
|
|
client = ["awc"]
|
2018-03-07 07:38:58 +00:00
|
|
|
|
2018-04-24 16:32:19 +00:00
|
|
|
# brotli encoding, requires c compiler
|
2019-03-28 21:46:33 +00:00
|
|
|
brotli = ["actix-http/brotli"]
|
2018-03-14 00:21:22 +00:00
|
|
|
|
2018-04-24 16:29:15 +00:00
|
|
|
# miniz-sys backend for flate2 crate
|
2019-03-27 01:46:06 +00:00
|
|
|
flate2-zlib = ["actix-http/flate2-zlib"]
|
2018-04-24 16:29:15 +00:00
|
|
|
|
2018-04-24 16:32:19 +00:00
|
|
|
# rust backend for flate2 crate
|
2019-03-26 22:14:32 +00:00
|
|
|
flate2-rust = ["actix-http/flate2-rust"]
|
2018-04-24 16:29:15 +00:00
|
|
|
|
2019-03-05 18:08:08 +00:00
|
|
|
# sessions feature, session require "ring" crate and c compiler
|
2019-03-30 04:13:39 +00:00
|
|
|
secure-cookies = ["actix-http/secure-cookies"]
|
2019-03-05 18:08:08 +00:00
|
|
|
|
2019-05-18 16:54:23 +00:00
|
|
|
fail = ["actix-http/fail"]
|
|
|
|
|
2019-03-05 00:29:03 +00:00
|
|
|
# openssl
|
2019-03-29 03:27:47 +00:00
|
|
|
ssl = ["openssl", "actix-server/ssl", "awc/ssl"]
|
2019-03-05 00:29:03 +00:00
|
|
|
|
|
|
|
# rustls
|
2019-08-28 15:40:24 +00:00
|
|
|
rust-tls = ["rustls", "actix-server/rust-tls", "awc/rust-tls"]
|
2019-03-05 00:29:03 +00:00
|
|
|
|
2019-07-18 11:24:12 +00:00
|
|
|
# unix domain sockets support
|
|
|
|
uds = ["actix-server/uds"]
|
|
|
|
|
2017-09-30 16:10:03 +00:00
|
|
|
[dependencies]
|
2019-04-10 19:24:17 +00:00
|
|
|
actix-codec = "0.1.2"
|
2019-06-16 16:10:22 +00:00
|
|
|
actix-service = "0.4.1"
|
2019-07-17 07:55:44 +00:00
|
|
|
actix-utils = "0.4.4"
|
2019-05-15 17:31:40 +00:00
|
|
|
actix-router = "0.1.5"
|
2019-07-17 06:07:12 +00:00
|
|
|
actix-rt = "0.2.4"
|
2019-06-04 16:36:10 +00:00
|
|
|
actix-web-codegen = "0.1.2"
|
2019-08-13 18:03:24 +00:00
|
|
|
actix-http = "0.2.9"
|
2019-07-18 11:24:12 +00:00
|
|
|
actix-server = "0.6.0"
|
|
|
|
actix-server-config = "0.1.2"
|
2019-06-05 02:13:43 +00:00
|
|
|
actix-threadpool = "0.1.1"
|
2019-08-13 19:41:26 +00:00
|
|
|
awc = { version = "0.2.4", optional = true }
|
2018-06-19 06:07:07 +00:00
|
|
|
|
2019-03-02 06:51:32 +00:00
|
|
|
bytes = "0.4"
|
2019-06-16 15:54:17 +00:00
|
|
|
derive_more = "0.15.0"
|
2019-06-18 06:43:25 +00:00
|
|
|
encoding_rs = "0.8"
|
2019-05-18 16:54:23 +00:00
|
|
|
futures = "0.1.25"
|
2019-06-16 15:54:17 +00:00
|
|
|
hashbrown = "0.5.0"
|
2018-01-28 06:03:03 +00:00
|
|
|
log = "0.4"
|
2017-10-19 06:43:50 +00:00
|
|
|
mime = "0.3"
|
2019-03-05 00:29:03 +00:00
|
|
|
net2 = "0.2.33"
|
2019-07-17 09:48:37 +00:00
|
|
|
parking_lot = "0.9"
|
2019-03-07 03:19:27 +00:00
|
|
|
regex = "1.0"
|
2019-03-17 07:48:40 +00:00
|
|
|
serde = { version = "1.0", features=["derive"] }
|
2017-11-16 06:06:28 +00:00
|
|
|
serde_json = "1.0"
|
2019-08-13 17:48:11 +00:00
|
|
|
serde_urlencoded = "0.6.1"
|
2019-04-20 00:23:17 +00:00
|
|
|
time = "0.1.42"
|
2019-08-13 18:03:24 +00:00
|
|
|
url = "2.1"
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-03-05 00:29:03 +00:00
|
|
|
# ssl support
|
|
|
|
openssl = { version="0.10", optional = true }
|
2019-05-18 16:54:23 +00:00
|
|
|
rustls = { version = "0.15", optional = true }
|
2019-03-05 00:29:03 +00:00
|
|
|
|
2017-10-22 05:59:09 +00:00
|
|
|
[dev-dependencies]
|
2019-07-31 20:02:56 +00:00
|
|
|
actix = "0.8.3"
|
|
|
|
actix-connect = "0.2.2"
|
|
|
|
actix-http-test = "0.2.4"
|
2019-07-01 03:37:03 +00:00
|
|
|
rand = "0.7"
|
2018-12-04 06:58:22 +00:00
|
|
|
env_logger = "0.6"
|
2017-12-02 05:29:22 +00:00
|
|
|
serde_derive = "1.0"
|
2019-03-25 21:33:34 +00:00
|
|
|
tokio-timer = "0.2.8"
|
2019-03-28 21:10:03 +00:00
|
|
|
brotli2 = "0.3.2"
|
|
|
|
flate2 = "1.0.2"
|
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
|
2019-04-01 17:26:09 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2019-06-17 06:33:00 +00:00
|
|
|
actix-web = { path = "." }
|
2019-04-01 17:26:09 +00:00
|
|
|
actix-http = { path = "actix-http" }
|
2019-04-18 19:23:56 +00:00
|
|
|
actix-http-test = { path = "test-server" }
|
2019-04-02 21:47:59 +00:00
|
|
|
actix-web-codegen = { path = "actix-web-codegen" }
|
|
|
|
actix-web-actors = { path = "actix-web-actors" }
|
|
|
|
actix-session = { path = "actix-session" }
|
2019-05-12 15:34:51 +00:00
|
|
|
actix-files = { path = "actix-files" }
|
|
|
|
actix-multipart = { path = "actix-multipart" }
|
2019-05-12 17:49:21 +00:00
|
|
|
awc = { path = "awc" }
|