[package] name = "tokio-stream-multiplexor" version = "0.5.6" authors = ["Greg \"GothAck\" Miell "] description = "Stream Multiplexor for tokio with a tcp like interface" repository = "https://github.com/GothAck/tokio-stream-multiplexor" documentation = "https://docs.rs/tokio-stream-multiplexor" categories = ["asynchronous", "network-programming"] readme = "README.md" license = "MIT" edition = "2021" [dependencies] async-channel = "1.6.1" bincode = "1.3.3" bytes = { version = "1.1.0", features = ["serde"] } futures = "0.3.17" futures-util = "0.3.17" rand = "0.8.4" serde = { version = "1.0.130", features = ["derive"] } tokio = { version = "1.13.0", features = ["io-util", "io-std", "rt", "net", "macros"] } tokio-util = { version = "0.6.9", features = ["codec"] } tracing = "0.1.29" [dev-dependencies] criterion = { version = "0.3", features = ["async_tokio"] } ctor = "0.1.21" tokio = { version = "1.13.0", features = ["io-util", "io-std", "rt", "net", "macros", "time", "rt-multi-thread"] } tracing-subscriber = { version = "0.3.2", features = ["env-filter"] } version-sync = "0.9" [lib] path = "src/lib.rs" [[bench]] name = "benches" harness = false