reqchan 0.5.8

This is a channel for requesting and receiving data. Each channel has only one requesting end, but it can have multiple responding ends. It is useful for implementing work sharing. The two ends of the channel are asynchronous with respect to each other, so it is kinda nonblocking. However, if multiple responding ends try to respond to the same request, only one will succeed; the rest will return errors.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "reqchan"
version = "0.5.8"
authors = ["Philip Woods <elzairthesorcerer@gmail.com>"]
description = "This is a channel for requesting and receiving data. Each channel has only one requesting end, but it can have multiple responding ends. It is useful for implementing work sharing. The two ends of the channel are asynchronous with respect to each other, so it is kinda nonblocking. However, if multiple responding ends try to respond to the same request, only one will succeed; the rest will return errors."
homepage = "https://github.com/Elzair/reqchan-rs"
documentation = "https://docs.rs/reqchan/"
readme = "README.md"
keywords = ["chan", "channel", "requests"]
categories = ["asynchronous", "data-structures"]
license = "MIT/Apache-2.0"
repository = "https://github.com/Elzair/reqchan-rs"

[dependencies]