File: control

package info (click to toggle)
rust-blocking 1.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 196 kB
  • sloc: perl: 258; python: 148; makefile: 5; sh: 1
file content (55 lines) | stat: -rw-r--r-- 1,933 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Source: rust-blocking
Section: rust
Priority: optional
Build-Depends:
 debhelper-compat (= 13),
 dh-cargo (>= 25),
 librust-async-channel-1+default-dev <!nocheck>,
 librust-async-lock-2+default-dev <!nocheck>,
 librust-async-task-4+default-dev <!nocheck>,
 librust-atomic-waker-1+default-dev <!nocheck>,
 librust-fastrand-1+default-dev <!nocheck>,
 librust-futures-lite-1+default-dev <!nocheck>,
 libstring-shellquote-perl,
Maintainer: Jonas Smedegaard <dr@jones.dk>
Standards-Version: 4.6.2
Vcs-Git: https://salsa.debian.org/debian/rust-blocking.git
Vcs-Browser: https://salsa.debian.org/debian/rust-blocking
Homepage: https://github.com/smol-rs/blocking
Rules-Requires-Root: no

Package: librust-blocking-dev
Architecture: all
Multi-Arch: foreign
Depends:
 librust-async-channel-1+default-dev,
 librust-async-lock-2+default-dev,
 librust-async-task-4+default-dev,
 librust-atomic-waker-1+default-dev,
 librust-fastrand-1+default-dev,
 librust-futures-lite-1+default-dev,
 ${misc:Depends},
Provides:
 librust-blocking-1+default-dev (= ${binary:Version}),
 librust-blocking-1-dev (= ${binary:Version}),
 librust-blocking-1.3-dev (= ${binary:Version}),
 librust-blocking-1.3.0-dev (= ${binary:Version}),
Description: 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.