1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-23 16:21:06 +01:00
actix-web/Cargo.toml

113 lines
2.8 KiB
TOML
Raw Normal View History

2017-09-30 18:10:03 +02:00
[package]
2017-10-14 16:59:35 +02:00
name = "actix-web"
2019-03-02 09:04:39 +01:00
version = "1.0.0-alpha.1"
2017-09-30 18:10:03 +02:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
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"
2019-03-02 23:07:21 +01:00
documentation = "https://docs.rs/actix-web/"
categories = ["network-programming", "asynchronous",
2018-02-28 08:51:57 +01:00
"web-programming::http-server",
"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"]
2019-03-02 07:51:32 +01:00
edition = "2018"
2017-10-16 22:16:54 +02:00
[badges]
2019-03-02 23:07:21 +01: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 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"
2019-03-02 08:59:44 +01:00
[workspace]
members = [
".",
2019-03-07 08:39:08 +01:00
"actix-files",
2019-03-06 03:52:29 +01:00
"actix-session",
"actix-web-codegen",
2019-03-02 08:59:44 +01:00
]
2019-03-05 01:29:03 +01:00
[package.metadata.docs.rs]
2019-03-10 05:40:09 +01:00
features = ["ssl", "tls", "rust-tls", "session"]
2019-03-05 01:29:03 +01:00
2017-10-23 06:52:01 +02:00
[features]
2019-03-10 05:40:09 +01:00
default = ["brotli", "flate2-c", "session"]
2018-03-07 08:38:58 +01:00
2018-04-24 18:32:19 +02:00
# brotli encoding, requires c compiler
2018-03-14 01:21:22 +01:00
brotli = ["brotli2"]
# miniz-sys backend for flate2 crate
flate2-c = ["flate2/miniz-sys"]
2018-04-24 18:32:19 +02:00
# rust backend for flate2 crate
flate2-rust = ["flate2/rust_backend"]
2019-03-05 19:08:08 +01:00
# sessions feature, session require "ring" crate and c compiler
2019-03-10 05:40:09 +01:00
session = ["cookie/secure"]
2019-03-05 19:08:08 +01:00
2019-03-05 01:29:03 +01:00
# tls
tls = ["native-tls", "actix-server/ssl"]
# openssl
ssl = ["openssl", "actix-server/ssl"]
# rustls
# rust-tls = ["rustls", "actix-server/rustls"]
2017-09-30 18:10:03 +02:00
[dependencies]
2019-03-02 07:51:32 +01:00
actix-codec = "0.1.0"
2019-03-13 01:06:08 +01:00
actix-service = "0.3.4"
actix-utils = "0.3.4"
2019-03-09 23:56:18 +01:00
actix-router = "0.1.0"
2019-03-12 07:11:51 +01:00
actix-rt = "0.2.1"
actix-web-codegen = { path="actix-web-codegen" }
2019-03-02 07:51:32 +01:00
actix-http = { git = "https://github.com/actix/actix-http.git" }
2019-03-13 01:06:08 +01:00
actix-server = "0.4.0"
actix-server-config = "0.1.0"
2018-06-19 08:07:07 +02:00
2019-03-02 07:51:32 +01:00
bytes = "0.4"
2019-03-10 05:40:09 +01:00
cookie = { version="0.11", features=["percent-encode"] }
2019-03-02 07:51:32 +01:00
derive_more = "0.14"
2019-03-02 23:07:21 +01:00
encoding = "0.2"
futures = "0.1"
hashbrown = "0.1.8"
2018-01-28 07:03:03 +01:00
log = "0.4"
2017-10-19 08:43:50 +02:00
mime = "0.3"
2019-03-05 01:29:03 +01:00
net2 = "0.2.33"
2019-03-02 23:07:21 +01:00
parking_lot = "0.7"
2019-03-07 04:19:27 +01:00
regex = "1.0"
2017-11-16 07:06:28 +01:00
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "^0.5.3"
2019-03-07 04:19:27 +01:00
time = "0.1"
url = { version="1.7", features=["query_encoding"] }
2019-03-02 07:51:32 +01:00
2019-03-05 19:08:08 +01:00
# middlewares
# actix-session = { path="session", optional = true }
2019-03-02 07:51:32 +01:00
# compression
2018-03-14 01:21:22 +01:00
brotli2 = { version="^0.3.2", optional = true }
flate2 = { version="^1.0.2", optional = true, default-features = false }
2017-11-16 07:06:28 +01:00
2019-03-05 01:29:03 +01:00
# ssl support
native-tls = { version="0.2", optional = true }
openssl = { version="0.10", optional = true }
# rustls = { version = "^0.15", optional = true }
[dev-dependencies]
2019-03-02 07:51:32 +01: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"
env_logger = "0.6"
2017-12-02 06:29:22 +01:00
serde_derive = "1.0"
2017-10-26 15:12:23 +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