2017-09-30 18:10:03 +02:00
|
|
|
[package]
|
2017-10-14 16:59:35 +02:00
|
|
|
name = "actix-web"
|
2017-11-04 17:07:44 +01:00
|
|
|
version = "0.3.0"
|
2017-09-30 18:10:03 +02:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2017-10-14 16:59:35 +02:00
|
|
|
description = "Actix web framework"
|
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"]
|
2017-10-23 18:16:13 +02:00
|
|
|
homepage = "https://github.com/actix/actix-web"
|
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
2017-10-26 15:12:23 +02:00
|
|
|
documentation = "https://docs.rs/actix-web/"
|
2017-11-06 23:56:38 +01:00
|
|
|
categories = ["network-programming", "asynchronous",
|
|
|
|
"web-programming::http-server", "web-programming::websocket"]
|
2017-12-17 19:08:44 +01:00
|
|
|
license = "MIT/Apache-2.0"
|
2017-09-30 18:10:03 +02:00
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
2017-10-26 15:12:23 +02:00
|
|
|
build = "build.rs"
|
2017-09-30 18:10:03 +02:00
|
|
|
|
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]
|
2017-10-14 16:59:35 +02:00
|
|
|
name = "actix_web"
|
2017-09-30 18:10:03 +02:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2017-10-23 06:52:01 +02:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
2017-11-02 00:34:58 +01:00
|
|
|
# tls
|
|
|
|
tls = ["native-tls", "tokio-tls"]
|
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
# openssl
|
|
|
|
alpn = ["openssl", "openssl/v102", "openssl/v110", "tokio-openssl"]
|
|
|
|
|
2017-09-30 18:10:03 +02:00
|
|
|
[dependencies]
|
2018-01-12 01:47:55 +01:00
|
|
|
log = "0.4"
|
2017-11-18 17:50:56 +01:00
|
|
|
failure = "0.1"
|
|
|
|
failure_derive = "0.1"
|
2018-01-12 21:31:33 +01:00
|
|
|
h2 = "0.1"
|
2017-12-01 04:01:25 +01:00
|
|
|
http = "^0.1.2"
|
2018-01-12 01:47:55 +01:00
|
|
|
httparse = "1.2"
|
2017-10-15 07:52:38 +02:00
|
|
|
http-range = "0.1"
|
2018-01-12 21:31:33 +01:00
|
|
|
time = "0.1"
|
2017-10-19 08:43:50 +02:00
|
|
|
mime = "0.3"
|
2017-10-16 10:19:23 +02:00
|
|
|
mime_guess = "1.8"
|
2017-10-15 07:52:38 +02:00
|
|
|
regex = "0.2"
|
2018-01-12 01:47:55 +01:00
|
|
|
sha1 = "0.4"
|
|
|
|
url = "1.6"
|
2017-11-16 07:06:28 +01:00
|
|
|
libc = "0.2"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2017-11-08 00:59:37 +01:00
|
|
|
brotli2 = "^0.3.2"
|
2017-10-28 07:19:00 +02:00
|
|
|
percent-encoding = "1.0"
|
2017-12-08 01:22:26 +01:00
|
|
|
smallvec = "0.6"
|
2017-12-08 06:52:46 +01:00
|
|
|
bitflags = "1.0"
|
2017-12-13 02:21:00 +01:00
|
|
|
num_cpus = "1.0"
|
2018-01-12 21:31:33 +01:00
|
|
|
flate2 = "1.0"
|
2018-01-12 21:32:54 +01:00
|
|
|
cookie = { version="0.10", features=["percent-encode", "secure"] }
|
2018-01-11 05:28:06 +01:00
|
|
|
|
2018-01-12 21:32:54 +01:00
|
|
|
# ring nightly compilation bug
|
|
|
|
# cookie = { git="https://github.com/alexcrichton/cookie-rs.git", features=["percent-encode", "secure"] }
|
2017-11-16 07:06:28 +01:00
|
|
|
|
2017-12-27 20:22:27 +01:00
|
|
|
# io
|
|
|
|
mio = "0.6"
|
|
|
|
net2 = "0.2"
|
2017-09-30 18:10:03 +02:00
|
|
|
bytes = "0.4"
|
|
|
|
futures = "0.1"
|
|
|
|
tokio-io = "0.1"
|
2017-10-29 14:05:31 +01:00
|
|
|
tokio-core = "0.1"
|
2017-11-02 20:54:09 +01:00
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
# native-tls
|
2017-11-02 00:34:58 +01:00
|
|
|
native-tls = { version="0.1", optional = true }
|
|
|
|
tokio-tls = { version="0.1", optional = true }
|
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
# openssl
|
|
|
|
tokio-openssl = { version="0.1", optional = true }
|
|
|
|
|
2017-09-30 18:10:03 +02:00
|
|
|
[dependencies.actix]
|
2018-01-08 04:10:42 +01:00
|
|
|
version = "^0.4.2"
|
2017-09-30 18:10:03 +02:00
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
[dependencies.openssl]
|
|
|
|
version = "0.9"
|
|
|
|
optional = true
|
|
|
|
|
2017-10-22 07:59:09 +02:00
|
|
|
[dev-dependencies]
|
2017-10-24 01:07:44 +02:00
|
|
|
env_logger = "0.4"
|
2017-10-22 21:48:43 +02:00
|
|
|
reqwest = "0.8"
|
2017-10-26 15:12:23 +02:00
|
|
|
skeptic = "0.13"
|
2017-12-02 06:29:22 +01:00
|
|
|
serde_derive = "1.0"
|
2017-10-26 15:12:23 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
skeptic = "0.13"
|
2017-11-24 19:28:43 +01:00
|
|
|
version_check = "0.1"
|
2017-10-22 07:59:09 +02:00
|
|
|
|
2017-09-30 18:10:03 +02:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
opt-level = 3
|
2017-12-17 21:35:04 +01:00
|
|
|
# debug = true
|
2018-01-01 06:55:25 +01:00
|
|
|
|
|
|
|
[workspace]
|
2018-01-01 07:22:56 +01:00
|
|
|
members = [
|
|
|
|
"./",
|
2018-01-02 22:42:30 +01:00
|
|
|
"examples/basics",
|
2018-01-01 07:22:56 +01:00
|
|
|
"examples/diesel",
|
|
|
|
"examples/json",
|
2018-01-02 22:42:30 +01:00
|
|
|
"examples/hello-world",
|
2018-01-01 07:22:56 +01:00
|
|
|
"examples/multipart",
|
|
|
|
"examples/state",
|
|
|
|
"examples/template_tera",
|
|
|
|
"examples/tls",
|
2018-01-01 18:31:42 +01:00
|
|
|
"examples/websocket",
|
2018-01-01 07:22:56 +01:00
|
|
|
"examples/websocket-chat",
|
|
|
|
]
|