[package] name = "ordered-channel" version = "1.1.0" edition = "2021" description = "A channel that always receives messages in the correct order, even if they were sent out of order" rust-version = "1.60" categories = ["concurrency"] license = "MIT OR Apache-2.0" repository = "https://gitlab.com/kornelski/ordered-channel" keywords = ["queue", "heap", "priority", "sequential"] [dependencies] # By default it's backed by `std::sync::mpsc`, but you can switch to `crossbeam-channel` crossbeam-channel = { version = "0.5.11", optional = true }