archive/tar | Package tar implements access to tar archives. |
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. |
compress/gzip | Package gzip implements reading and writing of gzip format compressed files, as specified in RFC 1952. |
context | Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes. |
crypto/sha256 | Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4. |
encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
errors | Package errors implements functions to manipulate errors. |
flag | Package flag implements command-line flag parsing. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
golang.org/x/sys/execabs | Package execabs is a drop-in replacement for os/exec that requires PATH lookups to find absolute paths. |
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. |
os/user | Package user allows user account lookups by name or id. |
path/filepath | Package filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths. |
runtime | Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |