2018-12-09 15:19:25 -08:00
|
|
|
[package]
|
|
|
|
name = "actix-codec"
|
2024-01-30 21:16:42 +00:00
|
|
|
version = "0.5.2"
|
2024-12-29 14:27:56 +00:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
|
2020-12-28 03:24:43 +00:00
|
|
|
description = "Codec utilities for working with framed protocols"
|
2018-12-09 15:19:25 -08:00
|
|
|
keywords = ["network", "framework", "async", "futures"]
|
2021-04-21 11:08:43 +01:00
|
|
|
repository = "https://github.com/actix/actix-net"
|
2018-12-09 15:19:25 -08:00
|
|
|
categories = ["network-programming", "asynchronous"]
|
2020-07-14 19:11:30 +09:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-07-17 03:05:39 +01:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2018-12-09 15:19:25 -08:00
|
|
|
|
2023-10-30 00:07:28 +00:00
|
|
|
[package.metadata.cargo_check_external_types]
|
2024-12-29 14:27:56 +00:00
|
|
|
allowed_external_types = ["bytes::*", "futures_core::*", "futures_sink::*", "tokio::*", "tokio_util::*"]
|
2023-10-30 00:07:28 +00:00
|
|
|
|
2018-12-09 15:19:25 -08:00
|
|
|
[dependencies]
|
2023-04-01 21:57:10 +01:00
|
|
|
bitflags = "2"
|
2020-12-28 11:16:37 +08:00
|
|
|
bytes = "1"
|
|
|
|
futures-core = { version = "0.3.7", default-features = false }
|
|
|
|
futures-sink = { version = "0.3.7", default-features = false }
|
2021-11-05 00:12:02 +00:00
|
|
|
memchr = "2.3"
|
2020-12-28 11:16:37 +08:00
|
|
|
pin-project-lite = "0.2"
|
2023-04-01 22:24:10 +01:00
|
|
|
tokio = "1.23.1"
|
2022-02-15 01:47:27 +00:00
|
|
|
tokio-util = { version = "0.7", features = ["codec", "io"] }
|
2022-03-15 19:37:08 +00:00
|
|
|
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
2021-11-05 00:12:02 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-29 05:08:55 +00:00
|
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
2021-11-04 19:43:33 -05:00
|
|
|
tokio-test = "0.4.2"
|
2021-11-05 00:12:02 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "lines"
|
|
|
|
harness = false
|
2024-12-29 14:27:56 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|