1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 05:52:59 +01:00
actix-net/actix-server/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2018-12-10 07:14:29 +01:00
[package]
name = "actix-server"
2021-04-20 06:16:32 +02:00
version = "2.0.0-beta.5"
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"
categories = ["network-programming", "asynchronous"]
license = "MIT OR Apache-2.0"
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]
2021-02-03 11:25:31 +01:00
actix-rt = { version = "2.0.0", default-features = false }
2021-04-16 16:18:53 +02:00
actix-service = "2.0.0"
actix-utils = "3.0.0"
2018-12-10 07:14:29 +01:00
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
2018-12-10 07:14:29 +01:00
log = "0.4"
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"
2021-02-24 08:54:28 +01:00
tokio = { version = "1.2", features = ["sync"] }
2019-07-18 13:05:40 +02:00
2018-12-10 07:14:29 +01:00
[dev-dependencies]
actix-codec = "0.4.0-beta.1"
2021-02-04 16:01:51 +01:00
actix-rt = "2.0.0"
bytes = "1"
2020-12-29 00:50:00 +01:00
env_logger = "0.8"
futures-util = { version = "0.3.7", default-features = false, features = ["sink"] }
tokio = { version = "1", features = ["io-util"] }