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

49 lines
1.5 KiB
TOML
Raw Normal View History

[package]
name = "actix-test"
version = "0.1.0-beta.12"
2021-04-02 09:03:01 +00:00
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
description = "Integration testing tools for Actix Web applications"
2021-10-20 21:32:05 +00:00
keywords = ["http", "web", "framework", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web.git"
categories = [
"network-programming",
"asynchronous",
"web-programming::http-server",
"web-programming::websocket",
]
license = "MIT OR Apache-2.0"
2021-10-20 21:32:05 +00:00
edition = "2018"
[features]
default = []
# rustls
rustls = ["tls-rustls", "actix-http/rustls", "awc/rustls"]
# openssl
openssl = ["tls-openssl", "actix-http/openssl", "awc/openssl"]
[dependencies]
2022-02-15 20:49:10 +00:00
actix-codec = "0.5"
2022-02-08 09:31:20 +00:00
actix-http = "3.0.0-rc.2"
actix-http-test = "3.0.0-beta.12"
actix-rt = "2.1"
2021-04-16 19:28:21 +00:00
actix-service = "2.0.0"
2021-04-17 01:07:33 +00:00
actix-utils = "3.0.0"
2022-02-08 09:31:48 +00:00
actix-web = { version = "4.0.0-rc.3", default-features = false, features = ["cookies"] }
2022-01-31 22:32:09 +00:00
awc = { version = "3.0.0-beta.20", default-features = false, features = ["cookies"] }
futures-core = { version = "0.3.7", default-features = false, features = ["std"] }
futures-util = { version = "0.3.7", default-features = false, features = [] }
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7"
tls-openssl = { package = "openssl", version = "0.10.9", optional = true }
tls-rustls = { package = "rustls", version = "0.20.0", optional = true }
tokio = { version = "1.8.4", features = ["sync"] }