1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 12:52:58 +01:00
actix-net/actix-test-server/Cargo.toml

33 lines
784 B
TOML
Raw Normal View History

2019-01-02 07:59:52 +01:00
[package]
name = "actix-test-server"
2019-05-12 17:10:30 +02:00
version = "0.2.2"
2019-01-02 07:59:52 +01:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix test server"
keywords = ["network", "framework", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net.git"
documentation = "https://docs.rs/actix-test-server/"
categories = ["network-programming", "asynchronous"]
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
edition = "2018"
2019-05-12 17:10:30 +02:00
workspace = ".."
2019-01-02 07:59:52 +01:00
[lib]
name = "actix_test_server"
path = "src/lib.rs"
[dependencies]
2019-03-13 01:01:02 +01:00
actix-rt = "0.2.1"
2019-05-12 17:10:30 +02:00
actix-server = "0.5.0"
2019-03-14 06:51:31 +01:00
actix-server-config = "0.1.0"
2019-01-02 07:59:52 +01:00
log = "0.4"
net2 = "0.2"
futures = "0.1"
tokio-tcp = "0.1"
tokio-reactor = "0.1"
2019-03-09 23:23:08 +01:00
[dev-dependencies]
2019-05-12 17:10:30 +02:00
actix-service = "0.4.0"