mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 08:12:59 +01:00
58 lines
1.6 KiB
TOML
58 lines
1.6 KiB
TOML
[package]
|
|
name = "actix-connect"
|
|
version = "2.0.0-alpha.3"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Actix connect - tcp connector service"
|
|
keywords = ["network", "framework", "async", "futures"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
documentation = "https://docs.rs/actix-connect/"
|
|
categories = ["network-programming", "asynchronous"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["openssl", "rustls", "uri"]
|
|
|
|
[lib]
|
|
name = "actix_connect"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = ["uri"]
|
|
|
|
# openssl
|
|
openssl = ["open-ssl", "tokio-openssl"]
|
|
|
|
# rustls
|
|
rustls = ["rust-tls", "tokio-rustls", "webpki"]
|
|
|
|
# support http::Uri as connect address
|
|
uri = ["http"]
|
|
|
|
[dependencies]
|
|
actix-service = "1.0.3"
|
|
actix-codec = "0.2.0"
|
|
actix-utils = "1.0.6"
|
|
actix-rt = "1.0.0"
|
|
derive_more = "0.99.2"
|
|
either = "1.5.3"
|
|
futures-util = { version = "0.3.4", default-features = false }
|
|
http = { version = "0.2.0", optional = true }
|
|
log = "0.4"
|
|
trust-dns-proto = { version = "0.19", default-features = false, features = ["tokio-runtime"] }
|
|
trust-dns-resolver = { version = "0.19", default-features = false, features = ["tokio-runtime", "system-config"] }
|
|
|
|
# openssl
|
|
open-ssl = { version="0.10", package = "openssl", optional = true }
|
|
tokio-openssl = { version = "0.4.0", optional = true }
|
|
|
|
# rustls
|
|
rust-tls = { version = "0.18.0", package = "rustls", optional = true }
|
|
tokio-rustls = { version = "0.14.0", optional = true }
|
|
webpki = { version = "0.21", optional = true }
|
|
|
|
[dev-dependencies]
|
|
bytes = "0.5.3"
|
|
actix-testing = { version="1.0.0" }
|