File: control

package info (click to toggle)
golang-fortio-safecast 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,160 bytes parent folder | download | duplicates (2)
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
Source: golang-fortio-safecast
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Nicolas Peugnet <nicolas@club1.fr>,
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any,
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-fortio-safecast
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-fortio-safecast.git
Homepage: https://github.com/fortio/safecast
XS-Go-Import-Path: fortio.org/safecast

Package: golang-fortio-safecast-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
Description: Go library for number type conversions safe from accidental overflow
 Avoid accidental overflow of numbers during go type conversions (e.g
 instead of shorter := bigger.(int8) type conversions use shorter :=
 safecast.MustConvert[int8](bigger).
 .
 Safecast allows one to safely convert between numeric types in Go and
 return errors (or panic when using the Must* variants) when the cast
 would result in a loss of precision, range or sign.