2018-08-19 10:47:04 -07:00
|
|
|
[package]
|
|
|
|
name = "actix-net"
|
2018-11-29 16:56:15 -10:00
|
|
|
version = "0.3.0"
|
2018-08-19 10:47:04 -07:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2018-10-08 21:46:57 -07:00
|
|
|
description = "Actix net - framework for the compisible network services for Rust (experimental)"
|
2018-08-19 10:47:04 -07:00
|
|
|
readme = "README.md"
|
2018-08-21 21:11:16 -07:00
|
|
|
keywords = ["network", "framework", "async", "futures"]
|
2018-08-19 10:47:04 -07:00
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
2018-10-08 22:02:38 -07:00
|
|
|
documentation = "https://docs.rs/actix-net/"
|
2018-08-21 21:11:16 -07:00
|
|
|
categories = ["network-programming", "asynchronous"]
|
2018-08-19 10:47:04 -07:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
2018-12-06 14:04:42 -08:00
|
|
|
edition = "2018"
|
2018-08-19 10:47:04 -07:00
|
|
|
|
2018-12-09 09:56:23 -08:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2018-12-09 15:19:25 -08:00
|
|
|
"actix-codec",
|
2018-12-10 08:42:31 -08:00
|
|
|
"actix-connector",
|
2019-01-01 22:59:52 -08:00
|
|
|
"actix-rt",
|
2018-12-09 09:56:23 -08:00
|
|
|
"actix-service",
|
2018-12-09 22:14:29 -08:00
|
|
|
"actix-server",
|
2019-01-01 22:59:52 -08:00
|
|
|
"actix-test-server",
|
2018-12-10 16:16:40 -08:00
|
|
|
"actix-utils",
|
2019-01-05 13:19:25 -08:00
|
|
|
"router",
|
2018-12-09 09:56:23 -08:00
|
|
|
]
|
2018-12-11 08:20:19 -08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-02-01 19:53:13 -08:00
|
|
|
#actix-service = "0.2.0"
|
|
|
|
actix-service = { path="actix-service" }
|
2018-12-11 08:20:19 -08:00
|
|
|
actix-codec = "0.1.0"
|
|
|
|
actix-rt = { path="actix-rt" }
|
|
|
|
actix-server = { path="actix-server", features=["ssl"] }
|
|
|
|
env_logger = "0.5"
|
|
|
|
futures = "0.1.24"
|
|
|
|
openssl = { version="0.10" }
|
|
|
|
tokio-openssl = { version="0.3" }
|