2017-09-30 16:10:03 +00:00
|
|
|
[package]
|
2017-10-14 14:59:35 +00:00
|
|
|
name = "actix-web"
|
2019-03-02 08:04:39 +00:00
|
|
|
version = "1.0.0-alpha.1"
|
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"
|
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"
|
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
|
|
|
|
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" }
|
|
|
|
appveyor = { repository = "fafhrd91/actix-web-hdy9d" }
|
|
|
|
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-02 21:59:12 +00:00
|
|
|
"staticfiles",
|
2019-03-02 07:59:44 +00:00
|
|
|
]
|
|
|
|
|
2019-03-05 00:29:03 +00:00
|
|
|
[package.metadata.docs.rs]
|
2019-03-05 18:08:08 +00:00
|
|
|
features = ["ssl", "tls", "rust-tls"] #, "session"]
|
2019-03-05 00:29:03 +00:00
|
|
|
|
2017-10-23 04:52:01 +00:00
|
|
|
[features]
|
2019-03-02 06:51:32 +00:00
|
|
|
default = ["brotli", "flate2-c"]
|
2018-03-07 07:38:58 +00:00
|
|
|
|
2018-04-24 16:32:19 +00:00
|
|
|
# brotli encoding, requires c compiler
|
2018-03-14 00:21:22 +00:00
|
|
|
brotli = ["brotli2"]
|
|
|
|
|
2018-04-24 16:29:15 +00:00
|
|
|
# miniz-sys backend for flate2 crate
|
|
|
|
flate2-c = ["flate2/miniz-sys"]
|
|
|
|
|
2018-04-24 16:32:19 +00:00
|
|
|
# rust backend for flate2 crate
|
2018-04-24 16:29:15 +00:00
|
|
|
flate2-rust = ["flate2/rust_backend"]
|
|
|
|
|
2019-03-05 18:08:08 +00:00
|
|
|
# sessions feature, session require "ring" crate and c compiler
|
|
|
|
# session = ["actix-session"]
|
|
|
|
|
2019-03-05 00:29:03 +00:00
|
|
|
# tls
|
|
|
|
tls = ["native-tls", "actix-server/ssl"]
|
|
|
|
|
|
|
|
# openssl
|
|
|
|
ssl = ["openssl", "actix-server/ssl"]
|
|
|
|
|
|
|
|
# rustls
|
|
|
|
# rust-tls = ["rustls", "actix-server/rustls"]
|
|
|
|
|
2017-09-30 16:10:03 +00:00
|
|
|
[dependencies]
|
2019-03-02 06:51:32 +00:00
|
|
|
actix-codec = "0.1.0"
|
2019-03-05 18:08:08 +00:00
|
|
|
#actix-service = "0.3.2"
|
|
|
|
#actix-utils = "0.3.1"
|
2019-03-04 21:25:35 +00:00
|
|
|
actix-rt = "0.1.0"
|
2019-03-03 00:24:14 +00:00
|
|
|
|
2019-03-05 18:08:08 +00:00
|
|
|
actix-service = { git = "https://github.com/actix/actix-net.git" }
|
|
|
|
actix-utils = { git = "https://github.com/actix/actix-net.git" }
|
|
|
|
|
2019-03-02 06:51:32 +00:00
|
|
|
actix-http = { git = "https://github.com/actix/actix-http.git" }
|
|
|
|
actix-router = { git = "https://github.com/actix/actix-net.git" }
|
2019-03-05 00:29:03 +00:00
|
|
|
actix-server = { git = "https://github.com/actix/actix-net.git" }
|
2018-06-19 06:07:07 +00:00
|
|
|
|
2019-03-02 06:51:32 +00:00
|
|
|
bytes = "0.4"
|
|
|
|
derive_more = "0.14"
|
2019-03-02 22:07:21 +00:00
|
|
|
encoding = "0.2"
|
|
|
|
futures = "0.1"
|
2018-01-28 06:03:03 +00:00
|
|
|
log = "0.4"
|
2019-03-02 06:51:32 +00:00
|
|
|
lazy_static = "1.2"
|
2017-10-19 06:43:50 +00:00
|
|
|
mime = "0.3"
|
2019-03-05 00:29:03 +00:00
|
|
|
net2 = "0.2.33"
|
2019-03-02 06:51:32 +00:00
|
|
|
num_cpus = "1.10"
|
2019-03-02 22:07:21 +00:00
|
|
|
parking_lot = "0.7"
|
2017-11-16 06:06:28 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2018-10-02 07:19:28 +00:00
|
|
|
serde_urlencoded = "^0.5.3"
|
2019-03-02 06:51:32 +00:00
|
|
|
threadpool = "1.7"
|
|
|
|
|
2019-03-05 18:08:08 +00:00
|
|
|
# middlewares
|
|
|
|
# actix-session = { path="session", optional = true }
|
|
|
|
|
2019-03-02 06:51:32 +00:00
|
|
|
# compression
|
2018-03-14 00:21:22 +00:00
|
|
|
brotli2 = { version="^0.3.2", optional = true }
|
2018-07-31 16:06:05 +00:00
|
|
|
flate2 = { version="^1.0.2", optional = true, default-features = false }
|
2017-11-16 06:06:28 +00:00
|
|
|
|
2019-03-05 00:29:03 +00:00
|
|
|
# ssl support
|
|
|
|
native-tls = { version="0.2", optional = true }
|
|
|
|
openssl = { version="0.10", optional = true }
|
|
|
|
# rustls = { version = "^0.15", optional = true }
|
|
|
|
|
2017-10-22 05:59:09 +00:00
|
|
|
[dev-dependencies]
|
2019-03-02 06:51:32 +00:00
|
|
|
actix-http = { git = "https://github.com/actix/actix-http.git", features=["ssl"] }
|
|
|
|
actix-http-test = { git = "https://github.com/actix/actix-http.git", features=["ssl"] }
|
|
|
|
rand = "0.6"
|
2018-12-04 06:58:22 +00:00
|
|
|
env_logger = "0.6"
|
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
|
2019-03-05 05:37:57 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
actix-service = { git = "https://github.com/actix/actix-net.git" }
|