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. |
code.google.com/p/go-uuid/uuid | |
encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
expvar | Package expvar provides a standardized interface to public variables, such as operation counters in servers. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
github.com/Sirupsen/logrus | |
github.com/docker/distribution | Package distribution will define the interfaces for the components of docker distribution. |
github.com/docker/distribution/context | Package context provides several utilities for working with Go's context in http requests. |
github.com/docker/distribution/digest | |
github.com/docker/distribution/manifest | |
github.com/docker/distribution/registry/api/v2 | Package v2 describes routes, urls and the error codes used in the Docker Registry JSON HTTP API V2. |
github.com/docker/distribution/registry/storage/cache | Package cache provides facilities to speed up access to the storage backend. |
github.com/docker/distribution/registry/storage/driver | |
github.com/docker/libtrust | Package libtrust provides an interface for managing authentication and authorization using public key cryptography. |
golang.org/x/net/context | Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes. |
io | Package io provides basic interfaces to I/O primitives. |
io/ioutil | Package ioutil implements some I/O utility functions. |
net/http | Package http provides HTTP client and server implementations. |
os | Package os provides a platform-independent interface to operating system functionality. |
path | Package path implements utility routines for manipulating slash-separated paths. |
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. |
sync/atomic | Package atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms. |
time | Package time provides functionality for measuring and displaying time. |