archive/zip | Package zip provides support for reading and writing ZIP archives. |
bufio | Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O. |
bytes | Package bytes implements functions for the manipulation of byte slices. |
cmp | Package cmp provides types and functions related to comparing ordered values. |
context | Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes. |
cuelabs.dev/go/oci/ociregistry | Package ociregistry provides an abstraction that represents the capabilities provided by an OCI registry. |
cuelabs.dev/go/oci/ociregistry/ocimem | Package ocimem provides a simple in-memory implementation of an OCI registry. |
cuelabs.dev/go/oci/ociregistry/ociref | Package ociref supports parsing cross-registry OCI registry references. |
cuelabs.dev/go/oci/ociregistry/ociserver | Package ociserver implements a docker V2 registry and the OCI distribution specification. |
cuelang.org/go/cue | Package cue is the main API for CUE evaluation. |
cuelang.org/go/cue/ast | Package ast declares the types used to represent syntax trees for CUE packages. |
cuelang.org/go/cue/ast/astutil | |
cuelang.org/go/cue/build | Package build defines data types and utilities for defining CUE configuration instances. |
cuelang.org/go/cue/cuecontext | |
cuelang.org/go/cue/errors | Package errors defines shared types for handling CUE errors. |
cuelang.org/go/cue/format | Package format implements standard formatting of CUE configurations. |
cuelang.org/go/cue/interpreter/embed | Package embed provides capabilities to CUE to embed any file that resides within a CUE module into CUE either verbatim or decoded. |
cuelang.org/go/cue/literal | Package literal implements conversions to and from string representations of basic data types. |
cuelang.org/go/cue/load | Package load loads CUE instances. |
cuelang.org/go/cue/parser | Package parser implements a parser for CUE source files. |
cuelang.org/go/cue/stats | Package stats is an experimental package for getting statistics on CUE evaluations. |
cuelang.org/go/cue/token | Package token defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates). |
cuelang.org/go/encoding/json | Package json converts JSON to and from CUE. |
cuelang.org/go/encoding/protobuf | Package protobuf defines functionality for parsing protocol buffer definitions and instances. |
cuelang.org/go/encoding/protobuf/jsonpb | Package jsonpb rewrites a CUE expression based upon the Protobuf interpretation of JSON. |
cuelang.org/go/internal | Package internal exposes some cue internals to other packages. |
cuelang.org/go/internal/astinternal | |
cuelang.org/go/internal/core/adt | Package adt represents partially and fully evaluated CUE types. |
cuelang.org/go/internal/core/runtime | |
cuelang.org/go/internal/cueconfig | Package cueconfig holds internal API relating to CUE configuration. |
cuelang.org/go/internal/cuedebug | |
cuelang.org/go/internal/cueexperiment | |
cuelang.org/go/internal/cueversion | Package cueversion provides access to the version of the cuelang.org/go module. |
cuelang.org/go/internal/diff | |
cuelang.org/go/internal/encoding | |
cuelang.org/go/internal/filetypes | |
cuelang.org/go/internal/golangorgx/gopls/cmd | Package cmd handles the gopls command line. |
cuelang.org/go/internal/golangorgx/gopls/hooks | Package hooks adds all the standard gopls implementations. |
cuelang.org/go/internal/golangorgx/tools/tool | Package tool is a harness for writing Go tools. |
cuelang.org/go/internal/httplog | |
cuelang.org/go/internal/mod/modload | |
cuelang.org/go/internal/mod/modresolve | |
cuelang.org/go/internal/mod/semver | Package semver implements comparison of semantic version strings. |
cuelang.org/go/internal/source | Package source contains utility functions that standardize reading source bytes across cue packages. |
cuelang.org/go/internal/task | Package task provides a registry for tasks to be used by commands. |
cuelang.org/go/internal/value | Package value contains functions for converting values to internal types and various other Value-related utilities. |
cuelang.org/go/internal/vcs | Package vcs provides access to operations on the version control systems supported by the source field in module.cue. |
cuelang.org/go/mod/modconfig | Package modconfig provides access to the standard CUE module configuration, including registry access and authorization. |
cuelang.org/go/mod/modfile | Package modfile provides functionality for reading and parsing the CUE module file, cue.mod/module.cue. |
cuelang.org/go/mod/modregistry | Package modregistry provides functionality for reading and writing CUE modules from an OCI registry. |
cuelang.org/go/mod/module | Package module defines the Version type along with support code. |
cuelang.org/go/mod/modzip | Package modzip provides functions for creating and extracting module zip files. |
cuelang.org/go/pkg/encoding/yaml | |
cuelang.org/go/pkg/tool/cli | Package cli provides tasks dealing with a console. |
cuelang.org/go/pkg/tool/exec | Package exec defines tasks for running commands. |
cuelang.org/go/pkg/tool/file | Package file provides file operations for cue tasks. |
cuelang.org/go/pkg/tool/http | Package http provides tasks related to the HTTP protocol. |
cuelang.org/go/pkg/tool/os | Package os defines tasks for retrieving os-related information. |
cuelang.org/go/tools/fix | Package fix contains functionality for writing CUE files with legacy syntax to newer ones. |
cuelang.org/go/tools/flow | Package flow provides a low-level workflow manager based on a CUE Instance. |
cuelang.org/go/tools/trim | Package trim removes fields that may be inferred from another mixed in value that "dominates" it. |
encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
errors | Package errors implements functions to manipulate errors. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
github.com/opencontainers/go-digest | Package digest provides a generalized type to opaquely represent message digests and their operations within the registry. |
github.com/opencontainers/image-spec/specs-go | |
github.com/opencontainers/image-spec/specs-go/v1 | |
github.com/rogpeppe/go-internal/diff | |
github.com/spf13/cobra | Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. |
github.com/spf13/pflag | Package pflag is a drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags. |
go/ast | Package ast declares the types used to represent syntax trees for Go packages. |
go/token | Package token defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates). |
go/types | Package types declares the data types and implements the algorithms for type-checking of Go packages. |
golang.org/x/oauth2 | Package oauth2 provides support for making OAuth2 authorized and authenticated HTTP requests, as specified in RFC 6749. |
golang.org/x/text/language | Package language implements BCP 47 language tags and related functionality. |
golang.org/x/text/message | Package message implements formatted I/O for localized strings with functions analogous to the fmt's print functions. |
golang.org/x/tools/go/packages | Package packages loads Go packages for inspection and analysis. |
io | Package io provides basic interfaces to I/O primitives. |
io/fs | Package fs defines basic interfaces to a file system. |
log/slog | Package slog provides structured logging, in which log records include a message, a severity level, and various other attributes expressed as key-value pairs. |
net | Package net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. |
net/http | Package http provides HTTP client and server implementations. |
net/http/httptest | Package httptest provides utilities for HTTP testing. |
os | Package os provides a platform-independent interface to operating system functionality. |
os/signal | Package signal implements access to incoming signals. |
path | Package path implements utility routines for manipulating slash-separated paths. |
path/filepath | Package filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
regexp | Package regexp implements regular expression search. |
runtime | Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines. |
runtime/debug | Package debug contains facilities for programs to debug themselves while they are running. |
runtime/pprof | Package pprof writes runtime profiling data in the format expected by the pprof visualization tool. |
slices | Package slices defines various functions useful with slices of any type. |
strconv | Package strconv implements conversions to and from string representations of basic data types. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
sync | Package sync provides basic synchronization primitives such as mutual exclusion locks. |
syscall | Package syscall contains an interface to the low-level operating system primitives. |
testing | Package testing provides support for automated testing of Go packages. |
text/template | Package template implements data-driven templates for generating textual output. |
time | Package time provides functionality for measuring and displaying time. |
unicode | Package unicode provides data and functions to test some properties of Unicode code points. |