2018-12-10 07:14:29 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-server"
|
2020-05-19 03:20:32 +02:00
|
|
|
version = "1.0.3"
|
2018-12-10 07:14:29 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Actix server - General purpose tcp server"
|
|
|
|
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"
|
2019-03-02 23:42:31 +01:00
|
|
|
workspace = ".."
|
2018-12-10 07:14:29 +01:00
|
|
|
|
|
|
|
[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]
|
2019-12-29 05:07:46 +01:00
|
|
|
actix-service = "1.0.1"
|
2019-12-11 06:28:09 +01:00
|
|
|
actix-rt = "1.0.0"
|
2020-08-24 10:18:37 +02:00
|
|
|
actix-codec = "0.3.0"
|
|
|
|
actix-utils = "2.0.0"
|
2018-12-10 07:14:29 +01:00
|
|
|
|
|
|
|
log = "0.4"
|
2019-12-11 09:43:26 +01:00
|
|
|
num_cpus = "1.11"
|
2019-07-18 13:05:40 +02:00
|
|
|
mio = "0.6.19"
|
2020-05-19 01:17:44 +02:00
|
|
|
socket2 = "0.3"
|
2020-03-11 20:27:26 +01:00
|
|
|
futures-channel = { version = "0.3.4", default-features = false }
|
|
|
|
futures-util = { version = "0.3.4", default-features = false, features = ["sink"] }
|
2018-12-10 07:14:29 +01:00
|
|
|
slab = "0.4"
|
|
|
|
|
2019-07-18 13:05:40 +02:00
|
|
|
# unix domain sockets
|
2020-02-26 11:48:27 +01:00
|
|
|
# FIXME: Remove it and use mio own uds feature once mio 0.7 is released
|
2019-11-20 19:35:44 +01:00
|
|
|
mio-uds = { version = "0.6.7" }
|
2019-07-18 13:05:40 +02:00
|
|
|
|
2018-12-10 07:14:29 +01:00
|
|
|
[dev-dependencies]
|
2019-12-05 11:40:24 +01:00
|
|
|
bytes = "0.5"
|
2019-12-29 05:07:46 +01:00
|
|
|
env_logger = "0.7"
|
2020-03-11 20:27:26 +01:00
|
|
|
actix-testing = "1.0.0"
|