1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 21:51:06 +01:00
actix-net/Cargo.toml

36 lines
979 B
TOML
Raw Normal View History

2018-08-19 19:47:04 +02:00
[package]
name = "actix-net"
2018-11-30 03:56:15 +01:00
version = "0.3.0"
2018-08-19 19:47:04 +02:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2018-10-09 06:46:57 +02:00
description = "Actix net - framework for the compisible network services for Rust (experimental)"
2018-08-19 19:47:04 +02:00
readme = "README.md"
2018-08-22 06:11:16 +02:00
keywords = ["network", "framework", "async", "futures"]
2018-08-19 19:47:04 +02:00
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net.git"
2018-10-09 07:02:38 +02:00
documentation = "https://docs.rs/actix-net/"
2018-08-22 06:11:16 +02:00
categories = ["network-programming", "asynchronous"]
2018-08-19 19:47:04 +02:00
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
2018-12-06 23:04:42 +01:00
edition = "2018"
2018-08-19 19:47:04 +02:00
2018-12-09 18:56:23 +01:00
[workspace]
members = [
2018-12-10 00:19:25 +01:00
"actix-codec",
2018-12-10 17:42:31 +01:00
"actix-connector",
2019-01-02 07:59:52 +01:00
"actix-rt",
2018-12-09 18:56:23 +01:00
"actix-service",
2018-12-10 07:14:29 +01:00
"actix-server",
2019-01-02 07:59:52 +01:00
"actix-test-server",
"actix-utils",
2018-12-09 18:56:23 +01:00
]
2018-12-11 17:20:19 +01:00
[dev-dependencies]
actix-service = "0.1.1"
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" }