2018-12-10 08:42:31 -08:00
|
|
|
[package]
|
2019-03-13 12:40:11 -07:00
|
|
|
name = "actix-connect"
|
2019-04-12 12:28:18 -07:00
|
|
|
version = "0.1.4"
|
2018-12-10 08:42:31 -08: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"
|
2019-03-14 22:39:49 -07:00
|
|
|
documentation = "https://docs.rs/actix-connect/"
|
2018-12-10 08:42:31 -08:00
|
|
|
categories = ["network-programming", "asynchronous"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
|
|
edition = "2018"
|
2019-03-02 14:47:52 -08:00
|
|
|
workspace = ".."
|
2018-12-10 08:42:31 -08:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2019-03-14 11:15:32 -07:00
|
|
|
features = ["ssl", "uri"]
|
2018-12-10 08:42:31 -08:00
|
|
|
|
|
|
|
[lib]
|
2019-03-13 14:38:33 -07:00
|
|
|
name = "actix_connect"
|
2018-12-10 08:42:31 -08:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[features]
|
2019-03-14 11:15:32 -07:00
|
|
|
default = ["uri"]
|
2018-12-10 08:42:31 -08:00
|
|
|
|
|
|
|
# openssl
|
|
|
|
ssl = ["openssl", "tokio-openssl"]
|
|
|
|
|
2019-03-14 11:15:32 -07:00
|
|
|
# support http::Uri as connect address
|
|
|
|
uri = ["http"]
|
|
|
|
|
2018-12-10 08:42:31 -08:00
|
|
|
[dependencies]
|
2019-04-11 09:57:21 -07:00
|
|
|
actix-service = "0.3.6"
|
|
|
|
actix-codec = "0.1.2"
|
|
|
|
actix-utils = "0.3.5"
|
2019-03-13 12:40:11 -07:00
|
|
|
derive_more = "0.14.0"
|
|
|
|
either = "1.5.1"
|
|
|
|
futures = "0.1.25"
|
2019-03-14 11:15:32 -07:00
|
|
|
http = { version = "0.1.16", optional = true }
|
2019-03-13 12:40:11 -07:00
|
|
|
log = "0.4"
|
|
|
|
tokio-tcp = "0.1.3"
|
|
|
|
tokio-current-thread = "0.1.5"
|
2019-04-11 09:57:21 -07:00
|
|
|
trust-dns-resolver = { version="0.11.0-alpha.3", default-features = false }
|
2018-12-10 08:42:31 -08:00
|
|
|
|
|
|
|
# openssl
|
|
|
|
openssl = { version="0.10", optional = true }
|
|
|
|
tokio-openssl = { version="0.3", optional = true }
|
2019-03-13 22:51:31 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
bytes = "0.4"
|
2019-04-12 12:28:18 -07:00
|
|
|
#actix-test-server = { version="0.2.0", features=["ssl"] }
|
|
|
|
actix-test-server = { path="../actix-test-server", features=["ssl"] }
|
2019-03-13 22:51:31 -07:00
|
|
|
actix-server-config = "0.1.0"
|
|
|
|
actix-utils = "0.3.4"
|
|
|
|
tokio-tcp = "0.1"
|