File: control

package info (click to toggle)
ocaml-backoff 0.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: ml: 218; sh: 59; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 1,102 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
Source: ocaml-backoff
Section: ocaml
Priority: optional
Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Uploaders: Kyle Robbertze <paddatrapper@debian.org>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               ocaml-dune (>= 2.8.0),
               dh-ocaml (>= 1.2.2),
               libalcotest-ocaml-dev (>=1.7.0),
               ocaml
Standards-Version: 4.7.0
Homepage: https://github.com/ocaml-multicore/backoff
Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-backoff
Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-backoff.git

Package: libbackoff-ocaml-dev
Architecture: any
Depends: ${misc:Depends},
         ${ocaml:Depends},
         ${shlibs:Depends}
Provides: ${ocaml:Provides}
Description: exponential backoff mechanism for OCaml
 Provides an exponential backoff mechanism. It reduces
 contention by making a domain back off after failing an
 operation contested by another domain, like acquiring a lock
 or performing a CAS operation.
 .
 This package includes the development files required to
 develop modules using backoff.