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. |
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/GeertJohan/go.incremental | package incremental provides concurency-safe incremental numbers. |
github.com/akavel/rsrc/binutil | |
github.com/akavel/rsrc/coff | |
github.com/daaku/go.zipexe | Package zipexe attempts to open an executable binary file as a zip file. |
github.com/jessevdk/go-flags | Package flags provides an extensive command line option parser. |
github.com/nkovacs/streamquote | Package streamquote implements a streaming version of strconv.Quote. |
github.com/valyala/fasttemplate | Package fasttemplate implements simple and fast template library. |
go/ast | Package ast declares the types used to represent syntax trees for Go packages. |
go/build | Package build gathers information about Go packages. |
go/format | Package format implements standard formatting of Go source. |
go/parser | Package parser implements a parser for Go source files. |
go/token | Package token defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates). |
io | Package io provides basic interfaces to I/O primitives. |
log | Package log implements a simple logging package. |
math/rand | Package rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work. |
os | Package os provides a platform-independent interface to operating system functionality. |
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. |
runtime/pprof | Package pprof writes runtime profiling data in the format expected by the pprof visualization tool. |
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. |
text/template | Package template implements data-driven templates for generating textual output. |
time | Package time provides functionality for measuring and displaying time. |