1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-13 04:05:25 +01:00
actix-web/Cargo.toml

133 lines
3.3 KiB
TOML
Raw Permalink Normal View History

2017-09-30 09:10:03 -07:00
[package]
2017-10-14 07:59:35 -07:00
name = "actix-web"
2019-12-05 23:35:43 +06:00
version = "2.0.0-alpha.3"
2017-09-30 09:10:03 -07:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
2017-09-30 09:10:03 -07:00
readme = "README.md"
2019-03-28 13:46:26 -07:00
keywords = ["actix", "http", "web", "framework", "async"]
2018-05-24 08:55:10 -07:00
homepage = "https://actix.rs"
2017-10-23 09:16:13 -07:00
repository = "https://github.com/actix/actix-web.git"
2019-03-02 14:07:21 -08:00
documentation = "https://docs.rs/actix-web/"
categories = ["network-programming", "asynchronous",
2018-02-27 23:51:57 -08:00
"web-programming::http-server",
"web-programming::websocket"]
2017-12-17 10:08:44 -08:00
license = "MIT/Apache-2.0"
2018-04-12 20:31:58 -07:00
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
2019-03-01 22:51:32 -08:00
edition = "2018"
[package.metadata.docs.rs]
features = ["openssl", "brotli", "flate2-zlib", "secure-cookies", "client"]
2017-10-16 13:16:54 -07:00
[badges]
2019-03-02 14:07:21 -08:00
travis-ci = { repository = "actix/actix-web", branch = "master" }
codecov = { repository = "actix/actix-web", branch = "master", service = "github" }
2017-10-16 13:16:54 -07:00
2017-09-30 09:10:03 -07:00
[lib]
2017-10-14 07:59:35 -07:00
name = "actix_web"
2017-09-30 09:10:03 -07:00
path = "src/lib.rs"
2019-03-01 23:59:44 -08:00
[workspace]
members = [
2019-11-20 23:33:22 +06:00
".",
"awc",
"actix-http",
2019-11-21 10:54:07 +06:00
"actix-cors",
2019-11-21 11:31:31 +06:00
"actix-files",
2019-11-21 12:17:01 +06:00
"actix-framed",
2019-11-21 13:08:22 +06:00
"actix-session",
2019-11-21 10:31:52 +06:00
"actix-identity",
2019-11-21 14:25:50 +06:00
"actix-multipart",
2019-11-21 13:01:07 +06:00
"actix-web-actors",
2019-11-20 23:33:22 +06:00
"actix-web-codegen",
"test-server",
2019-03-01 23:59:44 -08:00
]
2017-10-22 21:52:01 -07:00
[features]
2019-06-17 12:33:00 +06:00
default = ["brotli", "flate2-zlib", "client", "fail"]
2019-03-25 21:58:01 -07:00
# http client
client = ["awc"]
2018-03-07 15:38:58 +08:00
2018-04-24 09:32:19 -07:00
# brotli encoding, requires c compiler
brotli = ["actix-http/brotli"]
2018-03-13 17:21:22 -07:00
# miniz-sys backend for flate2 crate
2019-03-26 18:46:06 -07:00
flate2-zlib = ["actix-http/flate2-zlib"]
2018-04-24 09:32:19 -07:00
# rust backend for flate2 crate
2019-03-26 15:14:32 -07:00
flate2-rust = ["actix-http/flate2-rust"]
2019-03-05 10:08:08 -08:00
# sessions feature, session require "ring" crate and c compiler
2019-03-29 21:13:39 -07:00
secure-cookies = ["actix-http/secure-cookies"]
2019-03-05 10:08:08 -08:00
2019-05-18 09:54:23 -07:00
fail = ["actix-http/fail"]
2019-03-04 16:29:03 -08:00
# openssl
2019-12-02 17:33:11 +06:00
openssl = ["open-ssl", "actix-tls/openssl", "awc/openssl"]
2019-03-04 16:29:03 -08:00
# rustls
2019-12-05 23:35:43 +06:00
rustls = ["rust-tls", "actix-tls/rustls", "awc/rustls"]
2017-09-30 09:10:03 -07:00
[dependencies]
2019-12-05 23:35:43 +06:00
actix-codec = "0.2.0-alpha.3"
actix-service = "1.0.0-alpha.3"
actix-utils = "1.0.0-alpha.3"
actix-router = "0.2.0"
actix-rt = "1.0.0-alpha.3"
actix-server = "1.0.0-alpha.3"
actix-testing = "1.0.0-alpha.3"
2019-12-02 23:33:39 +06:00
actix-threadpool = "0.3.0"
2019-12-05 23:35:43 +06:00
actix-tls = { version = "1.0.0-alpha.3" }
2019-12-03 00:49:12 +06:00
actix-web-codegen = "0.2.0-alpha.2"
2019-12-07 13:00:03 +06:00
actix-http = "1.0.0-alpha.3"
awc = { version = "1.0.0-alpha.3", optional = true }
2018-06-19 12:07:07 +06:00
2019-12-05 23:35:43 +06:00
bytes = "0.5.2"
2019-11-25 17:59:14 +06:00
derive_more = "0.99.2"
encoding_rs = "0.8"
2019-11-20 23:33:22 +06:00
futures = "0.3.1"
2019-12-04 18:32:18 +06:00
fxhash = "0.2.1"
2018-01-27 22:03:03 -08:00
log = "0.4"
2017-10-18 23:43:50 -07:00
mime = "0.3"
2019-03-04 16:29:03 -08:00
net2 = "0.2.33"
2019-07-17 15:48:37 +06:00
parking_lot = "0.9"
2019-12-02 23:33:39 +06:00
pin-project = "0.4.6"
2019-12-07 12:28:26 +06:00
regex = "1.3"
2019-03-17 00:48:40 -07:00
serde = { version = "1.0", features=["derive"] }
2017-11-15 20:06:28 -10:00
serde_json = "1.0"
2019-08-13 10:48:11 -07:00
serde_urlencoded = "0.6.1"
2019-04-19 17:23:17 -07:00
time = "0.1.42"
2019-08-13 11:03:24 -07:00
url = "2.1"
2019-03-01 22:51:32 -08:00
2019-03-04 16:29:03 -08:00
# ssl support
2019-11-20 23:33:22 +06:00
open-ssl = { version="0.10", package="openssl", optional = true }
2019-12-05 23:35:43 +06:00
rust-tls = { version = "0.16", package="rustls", optional = true }
2019-03-04 16:29:03 -08:00
[dev-dependencies]
2019-11-20 23:33:22 +06:00
# actix = "0.8.3"
2019-12-07 12:28:26 +06:00
actix-connect = "1.0.0-alpha.3"
2019-12-07 13:00:03 +06:00
actix-http-test = "1.0.0-alpha.3"
2019-07-01 11:37:03 +08:00
rand = "0.7"
env_logger = "0.6"
2017-12-01 21:29:22 -08:00
serde_derive = "1.0"
2019-03-28 14:10:03 -07:00
brotli2 = "0.3.2"
flate2 = "1.0.2"
2017-10-26 06:12:23 -07:00
2017-09-30 09:10:03 -07:00
[profile.release]
lto = true
opt-level = 3
2018-02-15 13:59:25 -08:00
codegen-units = 1
2019-04-01 10:26:09 -07:00
[patch.crates-io]
2019-11-20 23:33:22 +06:00
actix-web = { path = "." }
actix-http = { path = "actix-http" }
actix-http-test = { path = "test-server" }
actix-web-codegen = { path = "actix-web-codegen" }
2019-11-25 17:59:14 +06:00
actix-cors = { path = "actix-cors" }
actix-identity = { path = "actix-identity" }
2019-11-21 14:25:50 +06:00
actix-session = { path = "actix-session" }
2019-11-21 11:31:31 +06:00
actix-files = { path = "actix-files" }
2019-11-21 14:25:50 +06:00
actix-multipart = { path = "actix-multipart" }
2019-11-20 23:33:22 +06:00
awc = { path = "awc" }