mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 08:22:59 +01:00
104 lines
2.2 KiB
TOML
104 lines
2.2 KiB
TOML
[package]
|
|
name = "actix-http"
|
|
version = "0.1.0"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Actix http"
|
|
readme = "README.md"
|
|
keywords = ["http", "web", "framework", "async", "futures"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
documentation = "https://actix.rs/api/actix-web/stable/actix_web/"
|
|
categories = ["network-programming", "asynchronous",
|
|
"web-programming::http-server",
|
|
"web-programming::websocket"]
|
|
license = "MIT/Apache-2.0"
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["session"]
|
|
|
|
[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_http"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = ["session", "cell"]
|
|
|
|
# sessions feature, session require "ring" crate and c compiler
|
|
session = ["cookie/secure"]
|
|
|
|
cell = ["actix-net/cell"]
|
|
|
|
# tls
|
|
tls = ["native-tls", "actix-net/tls"]
|
|
|
|
# openssl
|
|
ssl = ["openssl", "actix-net/ssl"]
|
|
|
|
# rustls
|
|
rust-tls = ["rustls", "actix-net/rust-tls"]
|
|
|
|
[dependencies]
|
|
actix = "0.7.5"
|
|
actix-net = "0.2.3"
|
|
#actix-net = { git="https://github.com/actix/actix-net.git" }
|
|
|
|
base64 = "0.9"
|
|
bitflags = "1.0"
|
|
http = "0.1.8"
|
|
httparse = "1.3"
|
|
failure = "0.1.3"
|
|
indexmap = "1.0"
|
|
log = "0.4"
|
|
mime = "0.3"
|
|
rand = "0.5"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
sha1 = "0.6"
|
|
time = "0.1"
|
|
encoding = "0.2"
|
|
serde_urlencoded = "0.5.3"
|
|
|
|
cookie = { version="0.11", features=["percent-encode"] }
|
|
percent-encoding = "1.0"
|
|
url = { version="1.7", features=["query_encoding"] }
|
|
|
|
# io
|
|
net2 = "0.2"
|
|
slab = "0.4"
|
|
bytes = "0.4"
|
|
byteorder = "1.2"
|
|
futures = "0.1"
|
|
tokio-codec = "0.1"
|
|
tokio = "0.1"
|
|
tokio-io = "0.1"
|
|
tokio-tcp = "0.1"
|
|
tokio-timer = "0.2"
|
|
tokio-current-thread = "0.1"
|
|
trust-dns-proto = "0.5.0"
|
|
trust-dns-resolver = "0.10.0"
|
|
|
|
# native-tls
|
|
native-tls = { version="0.2", optional = true }
|
|
|
|
# openssl
|
|
openssl = { version="0.10", optional = true }
|
|
|
|
# rustls
|
|
rustls = { version = "^0.14", optional = true }
|
|
|
|
[dev-dependencies]
|
|
actix-web = "0.7"
|
|
env_logger = "0.5"
|
|
serde_derive = "1.0"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
codegen-units = 1
|