rust-blocking 1.3.0-3 source package in Ubuntu

Changelog

rust-blocking (1.3.0-3) unstable; urgency=medium

  * tighten autopkgtests

 -- Jonas Smedegaard <email address hidden>  Thu, 02 Feb 2023 17:54:33 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
rust-blocking_1.3.0-3.dsc 2.3 KiB d0e359341bb3cb448ac1d43342215e6b9d412d072601264577cb5ddf843510b2
rust-blocking_1.3.0.orig.tar.gz 17.7 KiB de23a8b528401e55c30a9aea6d059b812494db17ff05d4447babbff22581b5ef
rust-blocking_1.3.0-3.debian.tar.xz 11.5 KiB 75268a2c4f10e0790fa3e52e9131336ce7b29c4894a31c8933e229c6b44deab8

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.