1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/Cargo.toml

114 lines
2.4 KiB
TOML
Raw Normal View History

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