1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 09:23:00 +01:00
actix-net/actix-connector/Cargo.toml

41 lines
978 B
TOML
Raw Normal View History

2018-12-10 17:42:31 +01:00
[package]
name = "actix-connector"
2019-01-13 19:06:54 +01:00
version = "0.1.1"
2018-12-10 17:42:31 +01:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix Connector - 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-net/"
categories = ["network-programming", "asynchronous"]
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
edition = "2018"
workspace = "../"
[package.metadata.docs.rs]
features = ["ssl"]
[lib]
name = "actix_connector"
path = "src/lib.rs"
[features]
default = []
# openssl
ssl = ["openssl", "tokio-openssl"]
[dependencies]
actix-service = "0.1.1"
2018-12-11 17:20:19 +01:00
actix-codec = "0.1.0"
2018-12-11 17:28:44 +01:00
actix-rt = "0.1.0"
2018-12-10 17:42:31 +01:00
futures = "0.1"
tokio-tcp = "0.1"
2019-01-13 19:03:33 +01:00
trust-dns-proto = "0.6.2"
trust-dns-resolver = "0.10.2"
2018-12-10 17:42:31 +01:00
# openssl
openssl = { version="0.10", optional = true }
tokio-openssl = { version="0.3", optional = true }