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. |
encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
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/tools/internal/gcimporter | Package gcimporter provides various functions for reading gc-generated object files that can be used to implement the Importer interface defined by the Go 1.5 standard library package. |
io | Package io provides basic interfaces to I/O primitives. |
os | Package os provides a platform-independent interface to operating system functionality. |
os/exec | Package exec runs external commands. |