2018-12-10 00:19:25 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-codec"
|
2021-12-31 09:08:14 +01:00
|
|
|
version = "0.4.2"
|
2021-11-05 01:12:02 +01:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
|
|
]
|
2020-12-28 04:24:43 +01:00
|
|
|
description = "Codec utilities for working with framed protocols"
|
2018-12-10 00:19:25 +01:00
|
|
|
keywords = ["network", "framework", "async", "futures"]
|
2021-04-21 12:08:43 +02:00
|
|
|
repository = "https://github.com/actix/actix-net"
|
2018-12-10 00:19:25 +01:00
|
|
|
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"
|
2020-12-28 04:16:37 +01:00
|
|
|
bytes = "1"
|
|
|
|
futures-core = { version = "0.3.7", default-features = false }
|
|
|
|
futures-sink = { version = "0.3.7", default-features = false }
|
2020-03-04 17:48:19 +01:00
|
|
|
log = "0.4"
|
2021-11-05 01:12:02 +01:00
|
|
|
memchr = "2.3"
|
2020-12-28 04:16:37 +01:00
|
|
|
pin-project-lite = "0.2"
|
2021-12-31 09:08:14 +01:00
|
|
|
tokio = "1.13.1"
|
2020-12-28 04:16:37 +01:00
|
|
|
tokio-util = { version = "0.6", features = ["codec", "io"] }
|
2021-11-05 01:12:02 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = { version = "0.3", features = ["html_reports"] }
|
2021-11-05 01:43:33 +01:00
|
|
|
tokio-test = "0.4.2"
|
2021-11-05 01:12:02 +01:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "lines"
|
|
|
|
harness = false
|