bytes | Package bytes implements functions for the manipulation of byte slices. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
golang.org/x/text/encoding | Package encoding defines an interface for character encodings, such as Shift JIS and Windows 1252, that can convert to and from UTF-8. |
golang.org/x/text/encoding/internal/identifier | Package identifier defines the contract between implementations of Encoding and Index by defining identifiers that uniquely identify standardized coded character sets (CCS) and character encoding schemes (CES), which we will together refer to as encodings, for which Encoding implementations provide converters to and from UTF-8. |
golang.org/x/text/transform | Package transform provides reader and writer wrappers that transform the bytes passing through as well as various transformations. |
io | Package io provides basic interfaces to I/O primitives. |
os | Package os provides a platform-independent interface to operating system functionality. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
testing | Package testing provides support for automated testing of Go packages. |