1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/actix-test/Cargo.toml

49 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "actix-test"
2023-02-26 14:20:48 +00:00
version = "0.1.1"
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"
2023-07-02 00:09:15 +00:00
edition = "2021"
[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-03-08 16:51:40 +00:00
actix-http = "3"
2022-07-24 01:11:21 +00:00
actix-http-test = "3"
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"] }
futures-core = { version = "0.3.17", default-features = false, features = ["std"] }
futures-util = { version = "0.3.17", default-features = false, features = [] }
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7"
2023-07-02 00:09:15 +00:00
tls-openssl = { package = "openssl", version = "0.10.55", optional = true }
tls-rustls = { package = "rustls", version = "0.20", optional = true }
2023-02-26 03:47:25 +00:00
tokio = { version = "1.24.2", features = ["sync"] }