async-proto 0.12.1

Simple async binary network protocols
Documentation
[package]
name = "async-proto"
version = "0.12.1"
authors = ["Fenhl <fenhl@fenhl.net>"]
edition = "2018"
description = "Simple async binary network protocols"
license = "MIT"
readme = "../../README.md"
repository = "https://github.com/fenhl/async-proto"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[features]
blocking = ["read-sync", "write-sync"]
read-sync = ["async-proto-derive/read-sync", "byteorder"]
tokio-tungstenite = ["dep_tokio_tungstenite", "futures"]
warp = ["dep_warp", "futures"]
write-sync = ["async-proto-derive/write-sync", "byteorder"]

[dependencies.async-proto-derive]
path = "../async-proto-derive"
version = "=0.12.1"

[dependencies.byteorder]
version = "1"
optional = true

[dependencies.chrono]
version = "0.4"
optional = true

[dependencies.chrono-tz]
version = "0.6"
optional = true

[dependencies.derive_more]
version = "0.99"
default-features = false
features = ["from"]

[dependencies.futures]
version = "0.3"
optional = true

[dependencies.noisy_float]
version = "0.2"
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.tokio]
version = "1"
features = ["io-util"]

[dependencies.dep_tokio_tungstenite]
package = "tokio-tungstenite"
version = "0.16"
optional = true

[dependencies.dep_warp]
package = "warp"
version = "0.3"
optional = true