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

46 lines
1.2 KiB
TOML
Raw Normal View History

2019-03-07 08:33:35 +01:00
[package]
name = "actix-net"
version = "0.3.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix net - framework for the compisible network services for Rust"
readme = "README.md"
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"
2018-12-09 18:56:23 +01:00
[workspace]
members = [
2018-12-10 00:19:25 +01:00
"actix-codec",
2019-03-13 20:40:37 +01:00
"actix-connect",
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-03-09 16:27:56 +01:00
"actix-server-config",
2019-01-02 07:59:52 +01:00
"actix-test-server",
2019-03-28 11:56:52 +01:00
"actix-threadpool",
"actix-utils",
2019-01-05 22:19:25 +01:00
"router",
2018-12-09 18:56:23 +01:00
]
2019-03-07 08:33:35 +01:00
[dev-dependencies]
2019-03-09 23:23:08 +01:00
actix-service = "0.3.3"
2019-03-07 08:33:35 +01:00
actix-codec = "0.1.1"
actix-rt = "0.2.0"
actix-server = { path="actix-server", features=["ssl"] }
env_logger = "0.6"
futures = "0.1.25"
openssl = "0.10"
tokio-tcp = "0.1"
tokio-openssl = "0.3"
[patch.crates-io]
actix-service = { path = "actix-service" }
actix-utils = { path = "actix-utils" }
actix-server = { path = "actix-server" }
actix-connect = { path = "actix-connect" }