2018-12-10 00:19:25 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-codec"
|
2020-08-24 10:18:37 +02:00
|
|
|
version = "0.3.0"
|
2018-12-10 00:19:25 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2020-08-24 10:18:37 +02:00
|
|
|
description = "Codec utilities for working with framed protocols."
|
2018-12-10 00:19:25 +01:00
|
|
|
keywords = ["network", "framework", "async", "futures"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
|
|
documentation = "https://docs.rs/actix-codec/"
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
2020-07-14 12:11:30 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2018-12-10 00:19:25 +01:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_codec"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-12-05 08:11:56 +01:00
|
|
|
bitflags = "1.2.1"
|
|
|
|
bytes = "0.5.2"
|
2020-03-11 21:02:03 +01:00
|
|
|
futures-core = { version = "0.3.4", default-features = false }
|
|
|
|
futures-sink = { version = "0.3.4", default-features = false }
|
2020-03-04 17:48:19 +01:00
|
|
|
log = "0.4"
|
2020-10-25 11:42:40 +01:00
|
|
|
pin-project = "1.0.0"
|
2020-08-19 12:00:12 +02:00
|
|
|
tokio = { version = "0.2.5", default-features = false }
|
|
|
|
tokio-util = { version = "0.3.1", default-features = false, features = ["codec"] }
|