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. |
context | Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes. |
crypto/sha256 | Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4. |
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. |
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. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
github.com/bgentry/speakeasy | |
github.com/coreos/bbolt | |
github.com/coreos/etcd/client | Package client provides bindings for the etcd APIs. |
github.com/coreos/etcd/clientv3 | clientv3 is the official Go etcd client for v3. |
github.com/coreos/etcd/clientv3/concurrency | |
github.com/coreos/etcd/clientv3/mirror | |
github.com/coreos/etcd/error | error package describes errors in etcd project. |
github.com/coreos/etcd/etcdserver | Package etcdserver defines how etcd servers interact and store their states. |
github.com/coreos/etcd/etcdserver/api | |
github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes | |
github.com/coreos/etcd/etcdserver/etcdserverpb | Package etcdserverpb is a generated protocol buffer package. |
github.com/coreos/etcd/etcdserver/membership | |
github.com/coreos/etcd/lease | |
github.com/coreos/etcd/mvcc | |
github.com/coreos/etcd/mvcc/backend | |
github.com/coreos/etcd/mvcc/mvccpb | |
github.com/coreos/etcd/pkg/fileutil | Package fileutil implements utility functions related to files and paths. |
github.com/coreos/etcd/pkg/flags | Package flags implements command-line flag parsing. |
github.com/coreos/etcd/pkg/pbutil | Package pbutil defines interfaces for handling Protocol Buffer objects. |
github.com/coreos/etcd/pkg/report | |
github.com/coreos/etcd/pkg/srv | |
github.com/coreos/etcd/pkg/transport | Package transport implements various HTTP transport utilities based on Go net package. |
github.com/coreos/etcd/pkg/types | Package types declares various data types and implements type-checking functions. |
github.com/coreos/etcd/raft | Package raft sends and receives messages in the Protocol Buffer format defined in the raftpb package. |
github.com/coreos/etcd/raft/raftpb | Package raftpb is a generated protocol buffer package. |
github.com/coreos/etcd/snap | Package snap stores raft nodes' states with snapshots. |
github.com/coreos/etcd/store | Package store defines etcd's in-memory key/value store. |
github.com/coreos/etcd/version | Package version implements etcd version parsing and contains latest version information. |
github.com/coreos/etcd/wal | Package wal provides an implementation of a write ahead log that is used by etcd. |
github.com/coreos/etcd/wal/walpb | Package walpb is a generated protocol buffer package. |
github.com/dustin/go-humanize | Package humanize converts boring ugly numbers to human-friendly strings and back. |
github.com/gogo/protobuf/proto | Package proto converts data structures to and from the wire format of protocol buffers. |
github.com/olekukonko/tablewriter | |
github.com/spf13/cobra | Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. |
github.com/spf13/pflag | Package pflag is a drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags. |
golang.org/x/time/rate | Package rate provides a rate limiter. |
google.golang.org/grpc/grpclog | Package grpclog defines logging for grpc. |
gopkg.in/cheggaaa/pb.v1 | Simple console progress bars |
hash/crc32 | Package crc32 implements the 32-bit cyclic redundancy check, or CRC-32, checksum. |
io | Package io provides basic interfaces to I/O primitives. |
io/ioutil | Package ioutil implements some I/O utility functions. |
math | Package math provides basic constants and mathematical functions. |
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. |
os/exec | Package exec runs external commands. |
os/signal | Package signal implements access to incoming signals. |
path/filepath | Package filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
regexp | Package regexp implements regular expression search. |
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. |