File: control

package info (click to toggle)
golang-github-fatih-set 0.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, bullseye-backports, forky, sid, trixie
  • size: 140 kB
  • sloc: makefile: 3
file content (27 lines) | stat: -rw-r--r-- 1,147 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
Source: golang-github-fatih-set
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Aloïs Micard <alois@micard.lu>
Section: devel
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-golang
Build-Depends-Indep: golang-any
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-fatih-set
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-fatih-set.git
Homepage: https://github.com/fatih/set
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/fatih/set

Package: golang-github-fatih-set-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Description: Set data structure for Go (library)
 Set provides both threadsafe and non-threadsafe implementations of a
 generic set data structure. The thread safety encompasses all operations
 on one set.  Operations on multiple sets are consistent in that the
 elements of each set used was valid at exactly one point in time between
 the start and the end of the operation. Because it's thread safe, you
 can use it concurrently with your goroutines.