2019-09-17 12:04:20 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-testing"
|
2019-11-25 16:49:11 +01:00
|
|
|
version = "0.3.0-alpha.2"
|
2019-09-17 12:04:20 +02:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2019-09-25 05:26:12 +02:00
|
|
|
description = "Actix testing utils"
|
2019-09-17 12:04:20 +02:00
|
|
|
keywords = ["network", "framework", "async", "futures"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
|
|
documentation = "https://docs.rs/actix-testing/"
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
workspace = ".."
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_testing"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-11-14 13:38:24 +01:00
|
|
|
actix-rt = "1.0.0-alpha.1"
|
2019-11-25 16:49:11 +01:00
|
|
|
actix-macros = "0.1.0-alpha.1"
|
2019-11-14 13:38:24 +01:00
|
|
|
actix-server = "0.8.0-alpha.1"
|
|
|
|
actix-server-config = "0.3.0-alpha.1"
|
|
|
|
actix-service = "1.0.0-alpha.1"
|
2019-09-17 12:04:20 +02:00
|
|
|
|
|
|
|
log = "0.4"
|
|
|
|
net2 = "0.2"
|
2019-11-14 13:38:24 +01:00
|
|
|
futures = "0.3.1"
|
|
|
|
tokio-net = { version = "0.2.0-alpha.6" }
|