mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 04:52:58 +01:00
2667850d60
* Prepare actix-server-config release * Bump up actix-server-config to 0.2.0
36 lines
871 B
TOML
36 lines
871 B
TOML
[package]
|
|
name = "actix-ioframe"
|
|
version = "0.1.0"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Actix framed service"
|
|
keywords = ["network", "framework", "async", "futures"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
documentation = "https://docs.rs/actix-ioframe/"
|
|
categories = ["network-programming", "asynchronous"]
|
|
license = "MIT/Apache-2.0"
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
edition = "2018"
|
|
workspace = ".."
|
|
|
|
[lib]
|
|
name = "actix_ioframe"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
actix-service = "0.4.1"
|
|
actix-codec = "0.1.2"
|
|
bytes = "0.4"
|
|
either = "1.5.2"
|
|
futures = "0.1.25"
|
|
tokio-current-thread = "0.1.4"
|
|
log = "0.4"
|
|
|
|
[dev-dependencies]
|
|
actix-rt = "0.2.2"
|
|
actix-connect = "0.2.0"
|
|
actix-testing = "0.1.0"
|
|
actix-server-config = "0.2.0"
|
|
tokio-tcp = "0.1"
|
|
tokio-timer = "0.2"
|