| bytes | Package bytes implements functions for the manipulation of byte slices. |
| crypto/sha256 | Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4. |
| 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. |
| encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
| errors | Package errors implements functions to manipulate errors. |
| flag | Package flag implements command-line flag parsing. |
| fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
| github.com/spf13/cobra | |
| github.com/spf13/pflag | Package pflag is a drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags. |
| go.etcd.io/bbolt | package bbolt implements a low-level key/value store in pure Go. |
| go.etcd.io/bbolt/errors | Package errors defines the error variables that may be returned during bbolt operations. |
| go.etcd.io/bbolt/internal/common | Copied from https://github.com/etcd-io/etcd/blob/main/client/pkg/verify/verify.go |
| go.etcd.io/bbolt/internal/guts_cli | |
| go.etcd.io/bbolt/internal/surgeon | |
| go.etcd.io/bbolt/version | |
| io | Package io provides basic interfaces to I/O primitives. |
| 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. |
| runtime | Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines. |
| 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. |
| sync/atomic | Package atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms. |
| testing | Package testing provides support for automated testing of Go packages. |
| time | Package time provides functionality for measuring and displaying time. |
| unicode | Package unicode provides data and functions to test some properties of Unicode code points. |
| unicode/utf8 | Package utf8 implements functions and constants to support text encoded in UTF-8. |