mirror of
https://github.com/actix/actix-web.git
synced 2024-11-18 07:35:36 +00:00
59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[package]
|
|
name = "actix-http-test"
|
|
version = "1.0.0"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Actix http test server"
|
|
readme = "README.md"
|
|
keywords = ["http", "web", "framework", "async", "futures"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
documentation = "https://docs.rs/actix-http-test/"
|
|
categories = ["network-programming", "asynchronous",
|
|
"web-programming::http-server",
|
|
"web-programming::websocket"]
|
|
license = "MIT/Apache-2.0"
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
edition = "2018"
|
|
workspace = ".."
|
|
|
|
[package.metadata.docs.rs]
|
|
features = []
|
|
|
|
[lib]
|
|
name = "actix_http_test"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# openssl
|
|
openssl = ["open-ssl", "awc/openssl"]
|
|
|
|
[dependencies]
|
|
actix-service = "1.0.0"
|
|
actix-codec = "0.2.0"
|
|
actix-connect = "1.0.0"
|
|
actix-utils = "1.0.3"
|
|
actix-rt = "1.0.0"
|
|
actix-server = "1.0.0"
|
|
actix-testing = "1.0.0"
|
|
awc = "1.0.0"
|
|
|
|
base64 = "0.11"
|
|
bytes = "0.5.3"
|
|
futures = "0.3.1"
|
|
http = "0.2.0"
|
|
log = "0.4"
|
|
env_logger = "0.6"
|
|
net2 = "0.2"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
sha1 = "0.6"
|
|
slab = "0.4"
|
|
serde_urlencoded = "0.6.1"
|
|
time = "0.1"
|
|
open-ssl = { version="0.10", package="openssl", optional = true }
|
|
|
|
[dev-dependencies]
|
|
actix-web = "2.0.0-alpha.5"
|
|
actix-http = "1.0.0"
|