2018-12-10 00:19:25 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-codec"
|
2024-01-30 22:16:42 +01:00
|
|
|
version = "0.5.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"
|
2023-07-17 04:05:39 +02:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2018-12-10 00:19:25 +01:00
|
|
|
|
2023-10-30 01:07:28 +01:00
|
|
|
[package.metadata.cargo_check_external_types]
|
|
|
|
allowed_external_types = [
|
|
|
|
"bytes::*",
|
|
|
|
"futures_core::*",
|
|
|
|
"futures_sink::*",
|
|
|
|
"tokio::*",
|
|
|
|
"tokio_util::*",
|
|
|
|
]
|
|
|
|
|
2018-12-10 00:19:25 +01:00
|
|
|
[dependencies]
|
2023-04-01 22:57:10 +02:00
|
|
|
bitflags = "2"
|
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 }
|
2021-11-05 01:12:02 +01:00
|
|
|
memchr = "2.3"
|
2020-12-28 04:16:37 +01:00
|
|
|
pin-project-lite = "0.2"
|
2023-04-01 23:24:10 +02:00
|
|
|
tokio = "1.23.1"
|
2022-02-15 02:47:27 +01:00
|
|
|
tokio-util = { version = "0.7", features = ["codec", "io"] }
|
2022-03-15 20:37:08 +01:00
|
|
|
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
2021-11-05 01:12:02 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-29 06:08:55 +01:00
|
|
|
criterion = { version = "0.5", 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
|