mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-27 20:12:58 +01:00
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
|
[package]
|
||
|
name = "actix-proxy-protocol"
|
||
|
version = "0.0.1"
|
||
|
authors = [
|
||
|
"Rob Ede <robjtede@icloud.com>",
|
||
|
]
|
||
|
description = "PROXY protocol utilities"
|
||
|
keywords = ["proxy", "protocol", "network", "haproxy", "tcp"]
|
||
|
categories = ["network-programming", "asynchronous"]
|
||
|
homepage = "https://actix.rs"
|
||
|
repository = "https://github.com/actix/actix-net.git"
|
||
|
license = "MIT OR Apache-2.0"
|
||
|
edition = "2018"
|
||
|
|
||
|
[dependencies]
|
||
|
actix-service = "2"
|
||
|
actix-utils = "3"
|
||
|
|
||
|
arrayvec = "0.7"
|
||
|
crc32fast = "1"
|
||
|
futures-core = { version = "0.3.17", default-features = false, features = ["std"] }
|
||
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
||
|
itoa = "1"
|
||
|
tokio = { version = "1.13.1", features = ["sync", "io-util"] }
|
||
|
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
actix-codec = "0.5"
|
||
|
actix-rt = "2.6"
|
||
|
actix-server = "2"
|
||
|
|
||
|
bytes = "1"
|
||
|
const-str = "0.5"
|
||
|
env_logger = "0.9"
|
||
|
futures-util = { version = "0.3.7", default-features = false, features = ["sink", "async-await-macro"] }
|
||
|
once_cell = "1"
|
||
|
pretty_assertions = "1"
|
||
|
tokio = { version = "1.13.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] }
|