2019-06-26 11:19:40 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-ioframe"
|
2019-12-07 05:55:54 +01:00
|
|
|
version = "0.3.0-alpha.3"
|
2019-06-26 11:19:40 +02:00
|
|
|
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-12-11 05:34:50 +01:00
|
|
|
actix-service = "1.0.0"
|
2019-12-11 05:23:01 +01:00
|
|
|
actix-codec = "0.2.0"
|
2019-12-11 09:43:26 +01:00
|
|
|
actix-utils = "1.0.0"
|
2019-12-11 06:28:09 +01:00
|
|
|
actix-rt = "1.0.0"
|
2019-12-05 11:40:24 +01:00
|
|
|
bytes = "0.5"
|
2019-06-26 11:19:40 +02:00
|
|
|
either = "1.5.2"
|
2019-11-14 13:38:24 +01:00
|
|
|
futures = "0.3.1"
|
2019-12-02 17:30:09 +01:00
|
|
|
pin-project = "0.4.6"
|
2019-06-26 11:19:40 +02:00
|
|
|
log = "0.4"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-12-02 17:30:09 +01:00
|
|
|
actix-connect = "1.0.0-alpha.2"
|
2019-12-11 09:47:30 +01:00
|
|
|
actix-testing = "1.0.0"
|