mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-23 22:51:07 +01:00
51 lines
1.6 KiB
TOML
Executable File
51 lines
1.6 KiB
TOML
Executable File
[package]
|
|
name = "actix-server"
|
|
version = "2.1.1"
|
|
authors = [
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
"fakeshadow <24548779@qq.com>",
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
"Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com>",
|
|
]
|
|
description = "General purpose TCP server built for the Actix ecosystem"
|
|
keywords = ["network", "tcp", "server", "framework", "async"]
|
|
categories = ["network-programming", "asynchronous"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "actix_server"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
io-uring = ["tokio-uring", "actix-rt/io-uring"]
|
|
|
|
[dependencies]
|
|
actix-rt = { version = "2.7", default-features = false }
|
|
actix-service = "2"
|
|
actix-utils = "3"
|
|
|
|
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
|
mio = { version = "0.8", features = ["os-poll", "net"] }
|
|
num_cpus = "1.13"
|
|
socket2 = "0.4.2"
|
|
tokio = { version = "1.13.1", features = ["sync"] }
|
|
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
|
|
|
# runtime for `io-uring` feature
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
tokio-uring = { version = "0.3", optional = true }
|
|
|
|
[dev-dependencies]
|
|
actix-codec = "0.5.0"
|
|
actix-rt = "2.6.0"
|
|
|
|
bytes = "1"
|
|
env_logger = "0.9"
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["sink", "async-await-macro"] }
|
|
tokio = { version = "1.13.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] }
|