rust-blocking 1.2.0-2 source package in Ubuntu

Changelog

rust-blocking (1.2.0-2) unstable; urgency=medium

  * install examples

 -- Jonas Smedegaard <email address hidden>  Tue, 12 Jul 2022 11:11:08 +0200

Upload details

Uploaded by:
Jonas Smedegaard
Uploaded to:
Sid
Original maintainer:
Jonas Smedegaard
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
rust-blocking_1.2.0-2.dsc 2.2 KiB d8ce6710dea5852f3f2f06bf4f0002880fe8e55aa52c9eb4ac57a72fcafb7c4d
rust-blocking_1.2.0.orig.tar.gz 17.4 KiB 5cb248a7150bf4210c5155c618b6425cab433ac1069762f4f965c6aa61240eb1
rust-blocking_1.2.0-2.debian.tar.xz 9.8 KiB d31dc125b7e95ed20c26035e582f0df3c9a960da896d5a9f3f897b6fad574237

Available diffs

No changes file available.

Binary packages built by this source

librust-blocking-dev: thread pool for isolating blocking I/O - Rust source code

 blocking provides a thread pool
 for isolating blocking I/O in async programs.
 .
 Sometimes there's no way to avoid blocking I/O.
 Consider files or stdin,
 which have weak asyncronous support on modern operating systems.
 While IOCP, AIO, and io_uring are possible solutions,
 they're not always available or ideal.
 .
 Since blocking is not allowed inside futures,
 we must move blocking I/O onto a special thread pool
 provided by this crate.
 The pool dynamically spawns and stops threads
 depending on the current number of running I/O jobs.
 .
 This package contains the source
 for the Rust blocking crate,
 packaged for use with cargo and dh-cargo.