[package] name = "actix-server" version = "1.0.4" authors = ["Nikolay Kim "] description = "General purpose TCP server built for the Actix ecosystem" 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 OR Apache-2.0" exclude = [".gitignore", ".cargo/config"] edition = "2018" [lib] name = "actix_server" path = "src/lib.rs" [features] default = [] [dependencies] actix-service = "1.0.6" actix-rt = "1.1.1" actix-codec = "0.3.0" actix-utils = "2.0.0" concurrent-queue = "1.2.2" futures-channel = { version = "0.3.4", default-features = false } futures-util = { version = "0.3.4", default-features = false } log = "0.4" mio = { version = "0.7.3", features = [ "os-poll", "tcp", "uds"] } num_cpus = "1.13" slab = "0.4" [dev-dependencies] actix-testing = "1.0.0" bytes = "0.5" env_logger = "0.7" futures-util = { version = "0.3.4", default-features = false, features = ["sink"] } tokio = { version = "0.3.1", features = ["full"] }