mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 00:01:11 +01:00
44 lines
1.2 KiB
TOML
Executable File
44 lines
1.2 KiB
TOML
Executable File
[package]
|
|
name = "actix-server"
|
|
version = "2.0.0-beta.2"
|
|
authors = [
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
"fakeshadow <24548779@qq.com>",
|
|
]
|
|
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-codec = "0.4.0-beta.1"
|
|
actix-rt = { version = "2.0.0-beta.3", default-features = false }
|
|
actix-service = "2.0.0-beta.3"
|
|
actix-utils = "3.0.0-beta.1"
|
|
|
|
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
|
log = "0.4"
|
|
mio = { version = "0.7.6", features = ["os-poll", "net"] }
|
|
num_cpus = "1.13"
|
|
slab = "0.4"
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
[dev-dependencies]
|
|
actix-rt = "2.0.0-beta.2"
|
|
bytes = "1"
|
|
env_logger = "0.8"
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["sink"] }
|
|
tokio = { version = "1", features = ["io-util"] }
|