[package]
name = "async-bincode"
version = "0.8.0"
edition = "2021"
description = "Asynchronous access to a bincode-encoded item stream."
readme = "README.md"
authors = [
"Jon Gjengset <jon@thesquareplanet.com>",
"Jonathan Behrens <behrensj@mit.edu>"
]
homepage = "https://github.com/jonhoo/async-bincode"
repository = "https://github.com/jonhoo/async-bincode.git"
keywords = ["asynchronous", "tokio", "bincode", "serialization"]
categories = ["asynchronous", "encoding", "network-programming"]
license = "MIT/Apache-2.0"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["tokio"]
futures = ["futures-io"]
[dependencies]
bincode = { version = "2.0.1", default-features = false, features = ["std", "serde"] }
byteorder = "1.0.0"
futures-core = "0.3.0"
futures-io = { version = "0.3.21", optional = true }
futures-sink = "0.3.0"
serde = "1.0.100"
tokio = { version = "1.0", features = ["net"], optional = true }
bytes = "1.0"
[dev-dependencies]
smol = "2.0.2"
smol-macros = "0.1.1"
macro_rules_attribute = "0.2.0"
futures = "0.3.0"
tokio = { version = "1.0", features = ["full"] }