2021-04-02 07:26:59 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-test"
|
2022-02-16 03:13:41 +00:00
|
|
|
version = "0.1.0-beta.13"
|
2021-04-02 09:03:01 +00:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
|
|
]
|
2021-04-02 07:26:59 +00:00
|
|
|
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",
|
|
|
|
]
|
2021-04-02 07:26:59 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-10-20 21:32:05 +00:00
|
|
|
edition = "2018"
|
2021-04-02 07:26:59 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
|
|
|
# rustls
|
2021-10-25 23:37:40 +00:00
|
|
|
rustls = ["tls-rustls", "actix-http/rustls", "awc/rustls"]
|
2021-04-02 07:26:59 +00:00
|
|
|
|
|
|
|
# openssl
|
2021-10-25 23:37:40 +00:00
|
|
|
openssl = ["tls-openssl", "actix-http/openssl", "awc/openssl"]
|
2021-04-02 07:26:59 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-15 20:49:10 +00:00
|
|
|
actix-codec = "0.5"
|
2022-03-08 16:51:40 +00:00
|
|
|
actix-http = "3"
|
2022-02-16 03:13:22 +00:00
|
|
|
actix-http-test = "3.0.0-beta.13"
|
2021-12-11 00:30:12 +00:00
|
|
|
actix-rt = "2.1"
|
2022-03-08 16:51:40 +00:00
|
|
|
actix-service = "2"
|
|
|
|
actix-utils = "3"
|
|
|
|
actix-web = { version = "4", default-features = false, features = ["cookies"] }
|
|
|
|
awc = { version = "3", default-features = false, features = ["cookies"] }
|
2021-04-02 07:26:59 +00:00
|
|
|
|
|
|
|
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 }
|
2021-10-20 01:00:11 +00:00
|
|
|
tls-rustls = { package = "rustls", version = "0.20.0", optional = true }
|
2021-12-27 18:54:10 +00:00
|
|
|
tokio = { version = "1.8.4", features = ["sync"] }
|