mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-23 22:51:07 +01:00
27 lines
848 B
TOML
27 lines
848 B
TOML
[package]
|
|
name = "actix-codec"
|
|
version = "0.3.0"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Codec utilities for working with framed protocols."
|
|
keywords = ["network", "framework", "async", "futures"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
documentation = "https://docs.rs/actix-codec/"
|
|
categories = ["network-programming", "asynchronous"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "actix_codec"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
bitflags = "1.2.1"
|
|
bytes = "0.5.2"
|
|
futures-core = { version = "0.3.4", default-features = false }
|
|
futures-sink = { version = "0.3.4", default-features = false }
|
|
log = "0.4"
|
|
pin-project = "1.0.0"
|
|
tokio = { version = "0.2.5", default-features = false }
|
|
tokio-util = { version = "0.3.1", default-features = false, features = ["codec"] }
|