golang-github-go-playground-validator-v10 10.4.1-2 source package in Ubuntu

Changelog

golang-github-go-playground-validator-v10 (10.4.1-2) unstable; urgency=medium

  * Source-only upload for testing eligibility.

 -- Cyril Brulebois <email address hidden>  Fri, 08 Jan 2021 15:18:25 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-go-playground-validator-v10_10.4.1-2.dsc 2.6 KiB 6fca13b3c638664a96b0bd4bb00cb9ed38f016226d770cb076718c5d115fb0e7
golang-github-go-playground-validator-v10_10.4.1.orig.tar.gz 169.1 KiB 04eacf16e9df0a78e331fc5f7fe1ff374e16e3a3625d838af5fd246e388d3d7d
golang-github-go-playground-validator-v10_10.4.1-2.debian.tar.xz 3.1 KiB ce88e405a6472048b886bbcd2e6266405afc34e0c8b62e084ce923e569fe3b28

Available diffs

No changes file available.

Binary packages built by this source

golang-github-go-playground-validator-v10-dev: Go library for struct and field validation

 The validator package implements value validations for structs and
 individual fields based on tags.
 .
 It has the following unique features:
  - Cross Field and Cross Struct validation 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.
  - Ability to dive into both map keys and values for validation.
  - Handles type interface by determining its underlying type prior
    to validation.
  - Handles custom field types such as the SQL driver's Valuer.
  - Alias validation tags, which allows for mapping of several
    validations to a single tag for easier definition of validations
    on structs.
  - Extraction of custom defined Field Name, allowing to specify
    extracting the JSON name while validating and making it available
    in the resulting FieldError.
  - Customizable i18n-aware error messages.