[package]
name = "actix-server"
version = "1.0.0-alpha.2"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix server - General purpose tcp server"
keywords = ["network", "framework", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net.git"
documentation = "https://docs.rs/actix-server/"
categories = ["network-programming", "asynchronous"]
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
edition = "2018"
workspace = ".."

[lib]
name = "actix_server"
path = "src/lib.rs"

[features]
default = []

[dependencies]
actix-service = "1.0.0-alpha.2"
actix-rt = "1.0.0-alpha.2"
actix-codec = "0.2.0-alpha.2"
actix-utils = "1.0.0-alpha.2"

log = "0.4"
num_cpus = "1.0"
mio = "0.6.19"
net2 = "0.2"
futures = "0.3.1"
slab = "0.4"

tokio-net = { version = "0.2.0-alpha.6", features = ["signal", "tcp", "uds"] }
futures-core-preview = "0.3.0-alpha.19"

# unix domain sockets
mio-uds = { version = "0.6.7" }

[dev-dependencies]
bytes = "0.4"
env_logger = "0.6"
actix-testing = "1.0.0-alpha.2"