2018-12-10 07:14:29 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-server"
|
2021-01-03 05:39:37 +01:00
|
|
|
version = "2.0.0-beta.2"
|
2020-12-29 00:50:00 +01:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
|
|
"fakeshadow <24548779@qq.com>",
|
|
|
|
]
|
2020-09-12 16:28:17 +02:00
|
|
|
description = "General purpose TCP server built for the Actix ecosystem"
|
2018-12-10 07:14:29 +01:00
|
|
|
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"]
|
2020-07-14 12:11:30 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-05-19 03:20:32 +02:00
|
|
|
exclude = [".gitignore", ".cargo/config"]
|
2018-12-10 07:14:29 +01:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_server"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2019-07-18 13:05:40 +02:00
|
|
|
|
2018-12-10 07:14:29 +01:00
|
|
|
[dependencies]
|
2020-12-29 00:44:53 +01:00
|
|
|
actix-codec = "0.4.0-beta.1"
|
2021-01-23 02:33:50 +01:00
|
|
|
actix-rt = { version = "2.0.0-beta.2", default-features = false }
|
2021-01-09 16:19:16 +01:00
|
|
|
actix-service = "2.0.0-beta.3"
|
2020-12-29 00:44:53 +01:00
|
|
|
actix-utils = "3.0.0-beta.1"
|
2018-12-10 07:14:29 +01:00
|
|
|
|
2021-01-23 02:33:50 +01:00
|
|
|
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
2018-12-10 07:14:29 +01:00
|
|
|
log = "0.4"
|
2020-12-29 00:44:53 +01:00
|
|
|
mio = { version = "0.7.6", features = ["os-poll", "net"] }
|
2020-09-12 16:28:17 +02:00
|
|
|
num_cpus = "1.13"
|
2018-12-10 07:14:29 +01:00
|
|
|
slab = "0.4"
|
2020-12-29 00:44:53 +01:00
|
|
|
tokio = { version = "1", features = ["sync"] }
|
2019-07-18 13:05:40 +02:00
|
|
|
|
2018-12-10 07:14:29 +01:00
|
|
|
[dev-dependencies]
|
2021-01-23 04:06:22 +01:00
|
|
|
actix-rt = "2.0.0-beta.2"
|
2020-12-29 00:44:53 +01:00
|
|
|
bytes = "1"
|
2020-12-29 00:50:00 +01:00
|
|
|
env_logger = "0.8"
|
2020-12-29 00:44:53 +01:00
|
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["sink"] }
|
|
|
|
tokio = { version = "1", features = ["io-util"] }
|