File: control

package info (click to toggle)
golang-gopkg-go-playground-validator.v8 8.18.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 392 kB
  • sloc: makefile: 3
file content (38 lines) | stat: -rw-r--r-- 1,727 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
Source: golang-gopkg-go-playground-validator.v8
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Shengjing Zhu <zhsj@debian.org>,
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
               golang-gopkg-go-playground-assert.v1-dev,
Standards-Version: 4.5.1
Homepage: https://github.com/go-playground/validator
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-gopkg-go-playground-validator.v8
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-gopkg-go-playground-validator.v8.git
XS-Go-Import-Path: gopkg.in/go-playground/validator.v8
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-go

Package: golang-gopkg-go-playground-validator.v8-dev
Architecture: all
Depends: ${misc:Depends},
         ${shlibs:Depends},
Description: Go Struct and Field validation (version 8.x)
 Package validator implements value validations for structs and individual
 fields based on tags.
 .
 It has the following unique features:
   * Cross Field and Cross Struct validations by using validation tags or
     custom validators.
   * Slice, Array and Map diving, which allows any or all levels of a
     multidimensional field to be validated.
   * Handles type interface by determining it's underlying type prior to
     validation.
   * Handles custom field types such as sql driver Valuer see Valuer
   * Alias validation tags, which allows for mapping of several validations
     to a single tag for easier defining of validations on structs
   * Extraction of custom defined Field Name e.g. can specify to extract the
     JSON name while validating and have it available in the resulting
     FieldError