1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-13 02:37:39 +01:00
actix-net/Cargo.toml

54 lines
1.5 KiB
TOML
Raw Permalink Normal View History

2019-03-06 23:33:35 -08:00
[package]
name = "actix-net"
version = "0.3.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-07-30 12:35:57 -04:00
description = "Actix net - framework for the composable network services for Rust"
2019-03-06 23:33:35 -08:00
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 09:56:23 -08:00
[workspace]
members = [
2018-12-09 15:19:25 -08:00
"actix-codec",
2019-03-13 12:40:37 -07:00
"actix-connect",
2019-09-17 16:04:20 +06:00
"actix-ioframe",
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-03-09 07:27:56 -08:00
"actix-server-config",
2019-09-17 16:04:20 +06:00
"actix-testing",
2019-03-28 03:56:52 -07:00
"actix-threadpool",
"actix-utils",
2019-01-05 13:19:25 -08:00
"router",
2018-12-09 09:56:23 -08:00
]
2019-03-06 23:33:35 -08:00
[dev-dependencies]
2019-05-12 08:40:42 -07:00
actix-service = "0.4.0"
2019-03-06 23:33:35 -08:00
actix-codec = "0.1.1"
actix-rt = "0.2.0"
2019-05-12 08:40:42 -07:00
actix-server = { version="0.5.0", features=["ssl"] }
2019-03-06 23:33:35 -08:00
env_logger = "0.6"
futures = "0.1.25"
openssl = "0.10"
tokio-tcp = "0.1"
tokio-openssl = "0.3"
2019-09-25 10:00:54 +06:00
[patch.crates-io]
actix-codec = { path = "actix-codec" }
actix-connect = { path = "actix-connect" }
actix-ioframe = { path = "actix-ioframe" }
actix-rt = { path = "actix-rt" }
actix-server = { path = "actix-server" }
actix-server-config = { path = "actix-server-config" }
actix-service = { path = "actix-service" }
actix-testing = { path = "actix-testing" }
actix-threadpool = { path = "actix-threadpool" }
actix-utils = { path = "actix-utils" }
actix-router = { path = "router" }