1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 16:32:59 +01:00
actix-web/Cargo.toml

106 lines
2.3 KiB
TOML
Raw Normal View History

2017-09-30 18:10:03 +02:00
[package]
2018-10-05 02:00:27 +02:00
name = "actix-http"
version = "0.1.0"
2017-09-30 18:10:03 +02:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2018-10-05 02:00:27 +02:00
description = "Actix http"
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"
2018-07-21 13:19:02 +02:00
documentation = "https://actix.rs/api/actix-web/stable/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"]
2017-09-30 18:10:03 +02:00
[package.metadata.docs.rs]
2018-10-07 06:14:02 +02:00
features = ["session"]
2017-10-16 22:16:54 +02:00
[badges]
2017-10-23 18:16:13 +02:00
travis-ci = { repository = "actix/actix-web", branch = "master" }
2017-11-09 05:25:14 +01:00
appveyor = { repository = "fafhrd91/actix-web-hdy9d" }
2017-10-23 18:16:13 +02:00
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]
2018-10-05 02:00:27 +02:00
name = "actix_http"
2017-09-30 18:10:03 +02:00
path = "src/lib.rs"
2017-10-23 06:52:01 +02:00
[features]
2018-10-05 16:02:09 +02:00
default = ["session", "cell"]
2017-10-23 06:52:01 +02:00
2018-04-24 18:32:19 +02:00
# sessions feature, session require "ring" crate and c compiler
2018-03-07 08:38:58 +01:00
session = ["cookie/secure"]
2018-10-03 07:23:51 +02:00
cell = ["actix-net/cell"]
2018-11-12 08:12:54 +01:00
# tls
tls = ["native-tls", "actix-net/tls"]
# openssl
ssl = ["openssl", "actix-net/ssl"]
# rustls
rust-tls = ["rustls", "actix-net/rust-tls"]
2017-09-30 18:10:03 +02:00
[dependencies]
2018-10-10 22:23:25 +02:00
actix = "0.7.5"
2018-11-12 08:12:54 +01:00
#actix-net = "0.2.0"
#actix-net = { git="https://github.com/actix/actix-net.git" }
actix-net = { path="../actix-net" }
2018-06-19 08:07:07 +02:00
2018-01-28 07:03:03 +01:00
base64 = "0.9"
bitflags = "1.0"
2018-10-10 22:23:25 +02:00
http = "0.1.8"
2018-07-05 09:21:33 +02:00
httparse = "1.3"
2018-10-10 22:23:25 +02:00
failure = "0.1.2"
2018-11-12 08:12:54 +01:00
indexmap = "1.0"
2018-01-28 07:03:03 +01:00
log = "0.4"
2017-10-19 08:43:50 +02:00
mime = "0.3"
2018-05-25 06:03:16 +02:00
rand = "0.5"
2017-11-16 07:06:28 +01:00
serde = "1.0"
serde_json = "1.0"
2018-02-28 05:32:51 +01:00
sha1 = "0.6"
2018-01-28 07:03:03 +01:00
time = "0.1"
encoding = "0.2"
lazy_static = "1.0"
2018-10-10 22:23:25 +02:00
serde_urlencoded = "0.5.3"
2018-07-25 17:01:22 +02:00
cookie = { version="0.11", features=["percent-encode"] }
percent-encoding = "1.0"
url = { version="1.7", features=["query_encoding"] }
2017-11-16 07:06:28 +01:00
2017-12-27 20:22:27 +01:00
# io
net2 = "0.2"
2018-11-12 08:12:54 +01:00
slab = "0.4"
2017-09-30 18:10:03 +02:00
bytes = "0.4"
2018-06-23 06:29:23 +02:00
byteorder = "1.2"
2017-09-30 18:10:03 +02:00
futures = "0.1"
2018-10-05 01:22:00 +02:00
tokio-codec = "0.1"
2018-10-05 06:14:18 +02:00
tokio = "0.1"
2017-09-30 18:10:03 +02:00
tokio-io = "0.1"
2018-05-25 06:03:16 +02:00
tokio-tcp = "0.1"
tokio-timer = "0.2"
tokio-current-thread = "0.1"
2018-11-12 08:12:54 +01:00
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 }
2017-11-02 20:54:09 +01:00
[dev-dependencies]
2018-10-05 02:00:27 +02:00
actix-web = "0.7"
2018-01-21 05:12:24 +01:00
env_logger = "0.5"
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