2018-12-09 15:19:25 -08:00
|
|
|
[package]
|
|
|
|
name = "actix-codec"
|
2019-12-11 10:18:11 +06:00
|
|
|
version = "0.2.0"
|
2018-12-09 15:19:25 -08:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Utilities for encoding and decoding frames"
|
|
|
|
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"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
2019-03-27 17:30:37 -07:00
|
|
|
workspace = ".."
|
2018-12-09 15:19:25 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_codec"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-12-05 13:11:56 +06:00
|
|
|
bitflags = "1.2.1"
|
|
|
|
bytes = "0.5.2"
|
2020-03-12 05:02:03 +09:00
|
|
|
futures-core = { version = "0.3.4", default-features = false }
|
|
|
|
futures-sink = { version = "0.3.4", default-features = false }
|
2019-12-07 10:15:26 +06:00
|
|
|
tokio = { version = "0.2.4", default-features=false }
|
2019-12-05 13:11:56 +06:00
|
|
|
tokio-util = { version = "0.2.0", default-features=false, features=["codec"] }
|
2020-03-04 11:48:19 -05:00
|
|
|
log = "0.4"
|
|
|
|
pin-project = "0.4.8"
|