mirror of
https://github.com/containers/skopeo.git
synced 2025-08-17 22:17:10 +00:00
This updates github.com/opencontainers/image-spec/schema subpackage from an obsolete .../jsonschema/v5 to /v6 . We use these dependencies only in tests, so it doesn't matter that much, but removing references to years-old unmaintained versions makes it easier to check / remove other such cases. (This is test-only, so the added files in vendor/ do not mean a larger binary size; it's almost exactly unchanged.) Signed-off-by: Miloslav Trmač <mitr@redhat.com>
17 lines
334 B
Go
17 lines
334 B
Go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
|
|
|
|
package language
|
|
|
|
// This file contains code common to the maketables.go and the package code.
|
|
|
|
// AliasType is the type of an alias in AliasMap.
|
|
type AliasType int8
|
|
|
|
const (
|
|
Deprecated AliasType = iota
|
|
Macro
|
|
Legacy
|
|
|
|
AliasTypeUnknown AliasType = -1
|
|
)
|