1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-12 19:57:38 +01:00
actix-web/Cargo.toml

114 lines
2.4 KiB
TOML
Raw Permalink Normal View History

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