1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 21:51:06 +01:00
actix-net/actix-codec/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2018-12-10 00:19:25 +01:00
[package]
name = "actix-codec"
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"]
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
[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"
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"
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]
criterion = { version = "0.5", features = ["html_reports"] }
tokio-test = "0.4.2"
2021-11-05 01:12:02 +01:00
[[bench]]
name = "lines"
harness = false