| 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. |
| container/list | Package list implements a doubly linked list. |
| context | Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes. |
| crypto/rc4 | Package rc4 implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography. |
| crypto/sha1 | Package sha1 implements the SHA-1 hash algorithm as defined in RFC 3174. |
| crypto/sha256 | Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4. |
| database/sql | Package sql provides a generic interface around SQL (or SQL-like) databases. |
| database/sql/driver | Package driver defines interfaces to be implemented by database drivers as used by package sql. |
| encoding/binary | Package binary implements simple translation between numbers and byte sequences and encoding and decoding of varints. |
| encoding/hex | Package hex implements hexadecimal encoding and decoding. |
| 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/kardianos/osext | Extensions to the standard "os" package. |
| github.com/nakagami/chacha20 | |
| github.com/shopspring/decimal | Package decimal implements an arbitrary precision fixed-point decimal. |
| gitlab.com/nyarla/go-crypt | |
| golang.org/x/text/encoding/charmap | Package charmap provides simple character encodings such as IBM Code Page 437 and Windows 1252. |
| golang.org/x/text/encoding/japanese | Package japanese provides Japanese encodings such as EUC-JP and Shift JIS. |
| golang.org/x/text/encoding/korean | Package korean provides Korean encodings such as EUC-KR. |
| golang.org/x/text/encoding/simplifiedchinese | Package simplifiedchinese provides Simplified Chinese encodings such as GBK. |
| golang.org/x/text/encoding/traditionalchinese | Package traditionalchinese provides Traditional Chinese encodings such as Big5. |
| hash | Package hash provides interfaces for hash functions. |
| io | Package io provides basic interfaces to I/O primitives. |
| math | Package math provides basic constants and mathematical functions. |
| math/big | Package big implements arbitrary-precision arithmetic (big numbers). |
| 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. |
| modernc.org/mathutil | Package mathutil provides utilities supplementing the standard 'math' and 'math/rand' packages. |
| net | Package net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. |
| net/netip | Package netip defines an IP address type that's a small value type. |
| 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. |
| regexp | Package regexp implements regular expression search. |
| 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. |
| syscall | Package syscall contains an interface to the low-level operating system primitives. |
| time | Package time provides functionality for measuring and displaying time. |