File: control

package info (click to toggle)
golang-github-valyala-fastrand 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 84 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 999 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
Source: golang-github-valyala-fastrand
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders:
 Guillem Jover <gjover@sipwise.com>,
Rules-Requires-Root: no
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-golang,
 golang-any,
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.6.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-valyala-fastrand
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-valyala-fastrand.git
Homepage: https://github.com/valyala/fastrand
XS-Go-Import-Path: github.com/valyala/fastrand

Package: golang-github-valyala-fastrand-dev
Architecture: all
Multi-Arch: foreign
Depends:
 ${misc:Depends},
Description: fast and scalable pseudorandom generator for Go (library)
 Fast pseudorandom number generator.
 .
 Features:
  * Optimized for speed.
  * Performance scales on multiple CPUs.
 .
 It work by using sync.Pool for maintaining "per-CPU" pseudorandom
 number generators.