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

37 lines
972 B
TOML
Raw Normal View History

2018-12-10 00:19:25 +01:00
[package]
name = "actix-codec"
2022-03-15 20:43:06 +01:00
version = "0.5.1"
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"
2018-12-10 00:19:25 +01:00
edition = "2018"
[lib]
name = "actix_codec"
path = "src/lib.rs"
[dependencies]
2022-02-15 02:47:27 +01:00
bitflags = "1.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"
tokio = "1.18.4"
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]
2022-10-21 04:23:40 +02:00
criterion = { version = "0.4", features = ["html_reports"] }
tokio-test = "0.4.2"
2021-11-05 01:12:02 +01:00
[[bench]]
name = "lines"
harness = false