mirror of
https://github.com/actix/actix-web.git
synced 2024-11-03 15:39:50 +00:00
7d753eeb8c
* Fork serde_urlencoded * Apply enum PR https://github.com/nox/serde_urlencoded/pull/30 * Add test to verify enum in query * Docs are updated to show example of how to use enum.
126 lines
2.8 KiB
TOML
126 lines
2.8 KiB
TOML
[package]
|
|
name = "actix-web"
|
|
version = "0.7.0"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
|
|
readme = "README.md"
|
|
keywords = ["http", "web", "framework", "async", "futures"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
documentation = "https://docs.rs/actix-web/"
|
|
categories = ["network-programming", "asynchronous",
|
|
"web-programming::http-server",
|
|
"web-programming::http-client",
|
|
"web-programming::websocket"]
|
|
license = "MIT/Apache-2.0"
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
build = "build.rs"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["tls", "alpn", "session", "brotli", "flate2-c"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "actix/actix-web", branch = "master" }
|
|
appveyor = { repository = "fafhrd91/actix-web-hdy9d" }
|
|
codecov = { repository = "actix/actix-web", branch = "master", service = "github" }
|
|
|
|
[lib]
|
|
name = "actix_web"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = ["session", "brotli", "flate2-c"]
|
|
|
|
# tls
|
|
tls = ["native-tls", "tokio-tls"]
|
|
|
|
# openssl
|
|
alpn = ["openssl", "tokio-openssl"]
|
|
|
|
# sessions feature, session require "ring" crate and c compiler
|
|
session = ["cookie/secure"]
|
|
|
|
# brotli encoding, requires c compiler
|
|
brotli = ["brotli2"]
|
|
|
|
# miniz-sys backend for flate2 crate
|
|
flate2-c = ["flate2/miniz-sys"]
|
|
|
|
# rust backend for flate2 crate
|
|
flate2-rust = ["flate2/rust_backend"]
|
|
|
|
[dependencies]
|
|
actix = "0.7.0"
|
|
|
|
base64 = "0.9"
|
|
bitflags = "1.0"
|
|
h2 = "0.1"
|
|
htmlescape = "0.3"
|
|
http = "^0.1.5"
|
|
httparse = "1.3"
|
|
log = "0.4"
|
|
mime = "0.3"
|
|
mime_guess = "2.0.0-alpha"
|
|
num_cpus = "1.0"
|
|
percent-encoding = "1.0"
|
|
rand = "0.5"
|
|
regex = "1.0"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
sha1 = "0.6"
|
|
smallvec = "0.6"
|
|
time = "0.1"
|
|
encoding = "0.2"
|
|
language-tags = "0.2"
|
|
lazy_static = "1.0"
|
|
lazycell = "1.0.0"
|
|
parking_lot = "0.6"
|
|
url = { version="1.7", features=["query_encoding"] }
|
|
cookie = { version="0.10", features=["percent-encode"] }
|
|
brotli2 = { version="^0.3.2", optional = true }
|
|
flate2 = { version="1.0", optional = true, default-features = false }
|
|
|
|
failure = "=0.1.1"
|
|
|
|
# io
|
|
mio = "^0.6.13"
|
|
net2 = "0.2"
|
|
bytes = "0.4"
|
|
byteorder = "1.2"
|
|
futures = "0.1"
|
|
futures-cpupool = "0.1"
|
|
slab = "0.4"
|
|
tokio = "0.1"
|
|
tokio-io = "0.1"
|
|
tokio-tcp = "0.1"
|
|
tokio-timer = "0.2"
|
|
tokio-reactor = "0.1"
|
|
|
|
# native-tls
|
|
native-tls = { version="0.1", optional = true }
|
|
tokio-tls = { version="0.1", optional = true }
|
|
|
|
# openssl
|
|
openssl = { version="0.10", optional = true }
|
|
tokio-openssl = { version="0.2", optional = true }
|
|
|
|
# forked url_encoded
|
|
itoa = "0.4"
|
|
dtoa = "0.4"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.5"
|
|
serde_derive = "1.0"
|
|
|
|
[build-dependencies]
|
|
version_check = "0.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
codegen-units = 1
|
|
|
|
[workspace]
|
|
members = [
|
|
"./",
|
|
]
|