| 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/rand | Package rand implements a cryptographically secure random number generator. |
| crypto/tls | Package tls partially implements TLS 1.2, as specified in RFC 5246, and TLS 1.3, as specified in RFC 8446. |
| encoding/binary | Package binary implements simple translation between numbers and byte sequences and encoding and decoding of varints. |
| errors | Package errors implements functions to manipulate errors. |
| fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
| golang.org/x/net/http/httpguts | Package httpguts provides functions implementing various details of the HTTP specification. |
| golang.org/x/net/http2/hpack | Package hpack implements HPACK, a compression format for efficiently representing HTTP header fields in the context of HTTP/2. |
| golang.org/x/net/idna | Package idna implements IDNA2008 using the compatibility processing defined by UTS (Unicode Technical Standard) #46, which defines a standard to deal with the transition from IDNA2003. |
| golang.org/x/net/internal/httpcommon | |
| io | Package io provides basic interfaces to I/O primitives. |
| io/fs | Package fs defines basic interfaces to a file system. |
| log | Package log implements a simple logging package. |
| math | Package math provides basic constants and mathematical functions. |
| math/bits | Package bits implements bit counting and manipulation functions for the predeclared unsigned integer types. |
| 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. |
| net | Package net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. |
| net/http | Package http provides HTTP client and server implementations. |
| net/http/httptrace | Package httptrace provides mechanisms to trace the events within HTTP client requests. |
| net/textproto | Package textproto implements generic support for text-based request/response protocols in the style of HTTP, NNTP, and SMTP. |
| net/url | Package url parses URLs and implements query escaping. |
| os | Package os provides a platform-independent interface to operating system functionality. |
| reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
| runtime | Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines. |
| sort | Package sort provides primitives for sorting slices and user-defined collections. |
| 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. |