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

25 lines
699 B
TOML
Raw Normal View History

2018-12-10 00:19:25 +01:00
[package]
name = "actix-codec"
2021-04-21 12:08:43 +02:00
version = "0.4.0"
2018-12-10 00:19:25 +01:00
authors = ["Nikolay Kim <fafhrd91@gmail.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]
bitflags = "1.2.1"
bytes = "1"
futures-core = { version = "0.3.7", default-features = false }
futures-sink = { version = "0.3.7", default-features = false }
log = "0.4"
pin-project-lite = "0.2"
tokio = "1"
tokio-util = { version = "0.6", features = ["codec", "io"] }