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

36 lines
871 B
TOML
Raw Normal View History

2019-06-26 11:19:40 +02:00
[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"
2019-09-25 06:47:06 +02:00
documentation = "https://docs.rs/actix-ioframe/"
2019-06-26 11:19:40 +02:00
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]
2019-07-03 09:02:03 +02:00
actix-service = "0.4.1"
actix-codec = "0.1.2"
2019-06-26 11:19:40 +02:00
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"
2019-07-03 09:02:03 +02:00
actix-connect = "0.2.0"
actix-testing = "0.1.0"
2019-07-03 09:02:03 +02:00
actix-server-config = "0.1.1"
tokio-tcp = "0.1"
tokio-timer = "0.2"