mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 04:52:58 +01:00
42 lines
928 B
TOML
42 lines
928 B
TOML
[package]
|
|
name = "actix-server"
|
|
version = "1.0.1"
|
|
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.1"
|
|
actix-rt = "1.0.0"
|
|
actix-codec = "0.2.0"
|
|
actix-utils = "1.0.4"
|
|
|
|
log = "0.4"
|
|
num_cpus = "1.11"
|
|
mio = "0.6.19"
|
|
net2 = "0.2"
|
|
futures = "0.3.1"
|
|
slab = "0.4"
|
|
|
|
# unix domain sockets
|
|
mio-uds = { version = "0.6.7" }
|
|
|
|
[dev-dependencies]
|
|
bytes = "0.5"
|
|
env_logger = "0.7"
|
|
actix-testing = "1.0.0" |