2018-12-09 22:14:29 -08:00
|
|
|
[package]
|
|
|
|
name = "actix-server"
|
2023-08-26 18:04:22 +01:00
|
|
|
version = "2.3.0"
|
2020-12-28 23:50:00 +00:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
2021-12-27 18:33:57 +00:00
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
|
|
"Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com>",
|
2020-12-28 23:50:00 +00:00
|
|
|
]
|
2020-09-12 15:28:17 +01:00
|
|
|
description = "General purpose TCP server built for the Actix ecosystem"
|
2021-12-27 18:33:57 +00:00
|
|
|
keywords = ["network", "tcp", "server", "framework", "async"]
|
2018-12-09 22:14:29 -08:00
|
|
|
categories = ["network-programming", "asynchronous"]
|
2021-12-27 18:33:57 +00:00
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
2020-07-14 19:11:30 +09:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-07-17 03:05:39 +01:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2018-12-09 22:14:29 -08:00
|
|
|
|
2023-10-30 00:07:28 +00:00
|
|
|
[package.metadata.cargo_check_external_types]
|
|
|
|
allowed_external_types = [
|
|
|
|
"tokio::*",
|
|
|
|
]
|
|
|
|
|
2018-12-09 22:14:29 -08:00
|
|
|
[features]
|
|
|
|
default = []
|
2021-11-14 19:45:15 +00:00
|
|
|
io-uring = ["tokio-uring", "actix-rt/io-uring"]
|
2019-07-18 17:05:40 +06:00
|
|
|
|
2018-12-09 22:14:29 -08:00
|
|
|
[dependencies]
|
2022-12-21 20:37:04 +00:00
|
|
|
actix-rt = { version = "2.8", default-features = false }
|
2022-03-08 23:42:52 +00:00
|
|
|
actix-service = "2"
|
|
|
|
actix-utils = "3"
|
2018-12-09 22:14:29 -08:00
|
|
|
|
2022-12-21 20:37:04 +00:00
|
|
|
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
|
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] }
|
2021-11-15 18:48:37 +00:00
|
|
|
mio = { version = "0.8", features = ["os-poll", "net"] }
|
2023-07-17 03:05:39 +01:00
|
|
|
socket2 = "0.5"
|
2023-04-01 22:24:10 +01:00
|
|
|
tokio = { version = "1.23.1", features = ["sync"] }
|
2022-03-09 01:08:35 +00:00
|
|
|
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
2019-07-18 17:05:40 +06:00
|
|
|
|
2022-03-08 23:42:52 +00:00
|
|
|
# runtime for `io-uring` feature
|
2022-01-11 23:36:49 +00:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2022-12-20 20:45:31 -06:00
|
|
|
tokio-uring = { version = "0.4", optional = true }
|
2021-11-07 23:43:59 +08:00
|
|
|
|
2018-12-09 22:14:29 -08:00
|
|
|
[dev-dependencies]
|
2022-10-30 20:25:10 +00:00
|
|
|
actix-codec = "0.5"
|
2022-12-21 20:37:04 +00:00
|
|
|
actix-rt = "2.8"
|
2021-03-30 13:39:10 +01:00
|
|
|
|
2020-12-29 07:44:53 +08:00
|
|
|
bytes = "1"
|
2022-12-21 21:17:21 +00:00
|
|
|
env_logger = "0.10"
|
2022-12-21 20:37:04 +00:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["sink", "async-await-macro"] }
|
2023-04-01 22:24:10 +01:00
|
|
|
tokio = { version = "1.23.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] }
|