[package]
edition = "2018"
rust-version = "1.47"
name = "queue-ext"
version = "0.4.2"
authors = ["try <trywen@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The extended feature of the queue can convert the pop() function of the queue to Stream and the push() function to Sender."
homepage = "https://github.com/try-box/rust-box/tree/main/queue-ext"
readme = "README.md"
keywords = [
"queue",
"stream",
"sender",
]
categories = [
"algorithms",
"concurrency",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/try-box/rust-box/tree/main/queue-ext"
resolver = "2"
[lib]
name = "queue_ext"
path = "src/lib.rs"
[dependencies.futures]
version = "0.3"
[dependencies.log]
version = "0.4"
[dependencies.pin-project]
version = "1"
[dependencies.pin-project-lite]
version = "0.2"