mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 00:01:11 +01:00
26 lines
728 B
TOML
26 lines
728 B
TOML
[package]
|
|
name = "actix-codec"
|
|
version = "0.2.0-alpha.2"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
description = "Utilities for encoding and decoding frames"
|
|
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/Apache-2.0"
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
edition = "2018"
|
|
workspace = ".."
|
|
|
|
[lib]
|
|
name = "actix_codec"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
bytes = "0.4.12"
|
|
futures = "0.3.1"
|
|
pin-project = "0.4.5"
|
|
tokio-io = "=0.2.0-alpha.6"
|
|
tokio-codec = "=0.2.0-alpha.6"
|
|
log = "0.4" |