Overview
Statistics (detailed ones)
	Total 306 packages analyzed and 1445 Go files
	(490929 lines of code) parsed. On average,
	* each Go source file imports 3.03 packages
	  and contains 340 lines of code.
	* each package depends on 6.87 other packages,
	  contains 4.92 source code files, and exports
	  - 4.95 type names,
	  - 1.81 variables,
	  - 18.64 constants,
	  - 7.91 functions.
All Packages (sort packages by:  |  |  | )
1. archive/tar (0) (3090) (16) (5) - implements access to tar archives.
2. archive/zip (0) (2238) (16) (5) - provides support for reading and writing ZIP archives.
3. arena (1) (108) (7) (2) - The arena package provides the ability to allocate memory for a collection of Go values and free that space manually all at once, safely.
4. bufio (40) (1263) (10) (1) - 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.
5. builtin (305) (310) (2) (5)
6. bytes (69) (2027) (9) (1) - implements functions for the manipulation of byte slices.
7. cmp (18) (77) (1) (1) - provides types and functions related to comparing ordered values.
8. compress/bzip2 (0) (869) (11) (5) - implements bzip2 decompression.
9. compress/flate (3) (3217) (15) (1) - implements the DEFLATE compressed data format, described in RFC 1951.
10. compress/gzip (3) (540) (16) (2) - implements reading and writing of gzip format compressed files, as specified in RFC 1952.
11. compress/lzw (1) (583) (15) (1) - implements the Lempel-Ziv-Welch compressed data format, described in T. A. Welch, “A Technique for High-Performance Data Compression”, Computer, 17(6) (June 1984), pp 8-19.
12. compress/zlib (4) (374) (16) (1) - implements reading and writing of zlib format compressed data, as specified in RFC 1950.
13. container/heap (2) (118) (9) (2) - provides heap operations for any type that implements heap.Interface.
14. container/list (3) (235) (1) (2) - implements a doubly linked list.
15. container/ring (0) (136) (1) (5) - implements operations on circular lists.
16. context (20) (792) (11) (1) - defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
17. crypto (13) (223) (10) (2) - collects common cryptographic constants.
18. crypto/aes (4) (962) (12) (2) - implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197.
19. crypto/cipher (9) (983) (10) (2) - implements standard block cipher modes that can be wrapped around low-level block cipher implementations.
20. crypto/des (2) (546) (11) (2) - implements the Data Encryption Standard (DES) and the Triple Data Encryption Algorithm (TDEA) as defined in U.S. Federal Information Processing Standards Publication 46-3.
21. crypto/dsa (1) (309) (16) (2) - implements the Digital Signature Algorithm, as defined in FIPS 186-3.
22. crypto/ecdh (4) (599) (14) (2) - implements Elliptic Curve Diffie-Hellman over NIST curves and Curve25519.
23. crypto/ecdsa (2) (901) (18) (2) - implements the Elliptic Curve Digital Signature Algorithm, as defined in FIPS 186-4 and SEC 1, Version 2.0.
24. crypto/ed25519 (2) (353) (17) (2) - implements the Ed25519 signature algorithm.
25. crypto/elliptic (3) (937) (16) (2) - implements the standard NIST P-224, P-256, P-384, and P-521 elliptic curves over prime fields.
26. crypto/hmac (3) (180) (12) (1) - implements the Keyed-Hash Message Authentication Code (HMAC) as defined in U.S. Federal Information Processing Standards Publication 198.
27. crypto/internal/alias (4) (30) (2) (3) - implements memory aliasing tests.
28. crypto/internal/bigmod (2) (815) (16) (3)
29. crypto/internal/boring (11) (141) (11) (2) - provides access to BoringCrypto implementation functions.
30. crypto/internal/boring/bbig (2) (33) (16) (3)
31. crypto/internal/boring/bcache (0) (140) (3) (5) - implements a GC-friendly cache (see [Cache]) for BoringCrypto.
32. crypto/internal/boring/sig (1) (17) (1) (3) - holds “code signatures” that can be called and will result in certain code sequences being linked into the final binary.
33. crypto/internal/cryptotest (0) (189) (17) (5)
34. crypto/internal/edwards25519 (1) (2281) (9) (3) - implements group logic for the twisted Edwards curve
35. crypto/internal/edwards25519/field (2) (712) (8) (3) - implements fast arithmetic modulo 2^255-19.
36. crypto/internal/hpke (1) (259) (17) (2)
37. crypto/internal/mlkem768 (1) (886) (17) (2) - implements the quantum-resistant key encapsulation method ML-KEM (formerly known as Kyber).
38. crypto/internal/nistec (3) (2453) (13) (3) - implements the NIST P elliptic curves from FIPS 186-4.
39. crypto/internal/nistec/fiat (1) (12336) (8) (4)
40. crypto/internal/randutil (5) (38) (9) (3) - contains internal randomness utilities for various crypto packages.
41. crypto/md5 (7) (320) (11) (1) - implements the MD5 hash algorithm as defined in RFC 1321.
42. crypto/rand (7) (280) (16) (2) - implements a cryptographically secure random number generator.
43. crypto/rc4 (1) (80) (9) (2) - implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography.
44. crypto/rsa (2) (1559) (17) (2) - implements RSA encryption as specified in PKCS #1 and RFC 8017.
45. crypto/sha1 (2) (379) (12) (2) - implements the SHA-1 hash algorithm as defined in RFC 3174.
46. crypto/sha256 (3) (420) (12) (2) - implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4.
47. crypto/sha512 (4) (550) (12) (2) - implements the SHA-384, SHA-512, SHA-512/224, and SHA-512/256 hash algorithms as defined in FIPS 180-4.
48. crypto/subtle (15) (93) (1) (2) - implements functions that are often useful in cryptographic code but require careful thought to use correctly.
49. crypto/tls (5) (13389) (20) (1) - partially implements TLS 1.2, as specified in RFC 5246, and TLS 1.3, as specified in RFC 8446.
50. crypto/x509 (2) (6548) (19) (1) - implements a subset of the X.509 standard.
51. crypto/x509/pkix (1) (320) (17) (2) - contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP.
52. database/sql (0) (4415) (16) (5) - provides a generic interface around SQL (or SQL-like) databases.
53. database/sql/driver (1) (855) (15) (1) - defines interfaces to be implemented by database drivers as used by package sql.
54. debug/buildinfo (0) (444) (18) (5) - provides access to information embedded in a Go binary about how it was built.
55. debug/dwarf (4) (4486) (15) (2) - provides access to DWARF debugging information loaded from executable files, as defined in the DWARF 2.0 Standard at http://dwarfstd.org/doc/dwarf-2.0.0.pdf.
56. debug/elf (2) (5429) (17) (1) - implements access to ELF object files.
57. debug/gosym (0) (1473) (15) (5) - implements access to the Go symbol and line number tables embedded in Go binaries generated by the gc compilers.
58. debug/macho (1) (1401) (17) (1) - implements access to Mach-O object files.
59. debug/pe (1) (1218) (17) (1) - implements access to PE (Microsoft Windows Portable Executable) files.
60. debug/plan9obj (1) (376) (15) (1) - implements access to Plan 9 a.out object files.
61. embed (2) (435) (12) (1) - provides access to files embedded in the running Go program.
62. embed/internal/embedtest (0) (0) (1) (5)
63. encoding (5) (54) (1) (1) - defines interfaces shared by other packages that convert data to and from byte-level and textual representations.
64. encoding/ascii85 (0) (307) (9) (5) - implements the ascii85 data encoding as used in the btoa tool and Adobe's PostScript and PDF document formats.
65. encoding/asn1 (3) (2053) (16) (2) - implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690.
66. encoding/base32 (0) (583) (9) (5) - implements base32 encoding as specified by RFC 4648.
67. encoding/base64 (6) (661) (11) (1) - implements base64 encoding as specified by RFC 4648.
68. encoding/binary (38) (1198) (10) (1) - implements simple translation between numbers and byte sequences and encoding and decoding of varints.
69. encoding/csv (0) (651) (15) (5) - reads and writes comma-separated values (CSV) files.
70. encoding/gob (1) (4708) (15) (2) - manages streams of gobs - binary values exchanged between an [Encoder] (transmitter) and a [Decoder] (receiver).
71. encoding/hex (2) (353) (15) (2) - implements hexadecimal encoding and decoding.
72. encoding/json (7) (4195) (15) (1) - implements encoding and decoding of JSON as defined in RFC 7159.
73. encoding/pem (2) (316) (12) (2) - implements the PEM data encoding, which originated in Privacy Enhanced Mail.
74. encoding/xml (0) (4350) (15) (5) - implements a simple XML 1.0 parser that understands XML name spaces.
75. errors (127) (296) (7) (1) - implements functions to manipulate errors.
76. expvar (0) (417) (23) (5) - provides a standardized interface to public variables, such as operation counters in servers.
77. flag (4) (1231) (15) (1) - implements command-line flag parsing.
78. fmt (114) (3521) (14) (1) - implements formatted I/O with functions analogous to C's printf and scanf.
79. go/ast (9) (3185) (17) (1) - declares the types used to represent syntax trees for Go packages.
80. go/build (3) (2896) (20) (1) - gathers information about Go packages.
81. go/build/constraint (3) (671) (10) (2) - implements parsing and evaluation of build constraint lines.
82. go/constant (4) (1438) (16) (2) - implements Values representing untyped Go constants and their corresponding operations.
83. go/doc (1) (2669) (18) (2) - extracts source code documentation from a Go AST.
84. go/doc/comment (2) (2328) (15) (2) - implements parsing and reformatting of Go doc comments, (documentation comments), which are comments that immediately precede a top-level declaration of a package, const, func, type, or var.
85. go/format (0) (309) (20) (5) - implements standard formatting of Go source.
86. go/importer (0) (122) (22) (5) - provides access to export data importers.
87. go/internal/gccgoimporter (1) (1814) (21) (1) - implements Import for gccgo-generated object files.
88. go/internal/gcimporter (1) (2022) (21) (1) - implements Import for gc-generated object files.
89. go/internal/srcimporter (1) (269) (21) (1) - implements importing directly from source files rather than installed packages.
90. go/internal/typeparams (2) (74) (18) (2)
91. go/parser (5) (3763) (19) (1) - implements a parser for Go source files.
92. go/printer (1) (3759) (18) (1) - implements printing of AST nodes.
93. go/scanner (3) (1084) (16) (2) - implements a scanner for Go source text.
94. go/token (17) (1026) (15) (1) - defines constants representing the lexical tokens of the Go programming language and basic operations on tokens (printing, predicates).
95. go/types (4) (22811) (20) (1) - declares the data types and implements the algorithms for type-checking of Go packages.
96. go/version (1) (64) (10) (2) - provides operations on [Go versions] in [Go toolchain name syntax]: strings like "go1.20", "go1.21.0", "go1.22rc2", and "go1.23.4-bigcorp".
97. hash (20) (58) (9) (1) - provides interfaces for hash functions.
98. hash/adler32 (1) (121) (10) (2) - implements the Adler-32 checksum.
99. hash/crc32 (3) (574) (10) (1) - implements the 32-bit cyclic redundancy check, or CRC-32, checksum.
100. hash/crc64 (0) (206) (10) (5) - implements the 64-bit cyclic redundancy check, or CRC-64, checksum.
101. hash/fnv (0) (332) (10) (5) - implements FNV-1 and FNV-1a, non-cryptographic hash functions created by Glenn Fowler, Landon Curt Noll, and Phong Vo.
102. hash/maphash (0) (320) (2) (5) - provides hash functions on byte sequences.
103. html (2) (2479) (10) (1) - provides functions for escaping and unescaping HTML text.
104. html/template (2) (4773) (17) (1) - (html/template) implements data-driven templates for generating HTML output safe against code injection.
105. image (5) (2100) (11) (1) - implements a basic 2-D image library.
106. image/color (6) (720) (1) (1) - implements a basic color library.
107. image/color/palette (1) (511) (2) (1) - provides standard color palettes.
108. image/draw (1) (1084) (13) (1) - provides image composition functions.
109. image/gif (0) (1110) (16) (5) - implements a GIF image decoder and encoder.
110. image/internal/imageutil (2) (276) (12) (1) - contains code shared by image-related packages.
111. image/jpeg (0) (2626) (13) (5) - implements a JPEG image decoder and encoder.
112. image/png (0) (1785) (17) (5) - implements a PNG image decoder and encoder.
113. index/suffixarray (0) (3010) (12) (5) - implements substring search in logarithmic time using an in-memory suffix array.
114. internal/abi (8) (1283) (2) (2)
115. internal/asan (1) (27) (2) (2) - contains helper functions for manually instrumenting code for the address sanitizer.
116. internal/bisect (1) (778) (7) (2) - can be used by compilers and other programs to serve as a target for the bisect debugging tool.
117. internal/buildcfg (2) (624) (15) (2) - provides access to the build configuration described by the current environment.
118. internal/bytealg (16) (294) (3) (2)
119. internal/byteorder (25) (149) (1) (1) - provides functions for decoding and encoding little and big endian integer types from/to byte slices.
120. internal/cfg (1) (72) (1) (1) - holds configuration shared by the Go command and internal/testenv.
121. internal/chacha8rand (2) (395) (2) (2) - implements a pseudorandom generator based on ChaCha8.
122. internal/concurrent (1) (408) (9) (4)
123. internal/coverage (8) (469) (1) (2)
124. internal/coverage/calloc (1) (29) (1) (2)
125. internal/coverage/cfile (1) (1113) (18) (1) - implements management of coverage files.
126. internal/coverage/cformat (1) (359) (16) (2)
127. internal/coverage/cmerge (2) (127) (15) (2)
128. internal/coverage/decodecounter (1) (373) (17) (2)
129. internal/coverage/decodemeta (1) (359) (17) (2)
130. internal/coverage/encodecounter (1) (297) (17) (2)
131. internal/coverage/encodemeta (1) (347) (17) (2)
132. internal/coverage/pods (1) (199) (15) (2)
133. internal/coverage/rtcov (2) (88) (2) (2)
134. internal/coverage/slicereader (3) (123) (15) (3)
135. internal/coverage/slicewriter (1) (80) (15) (3)
136. internal/coverage/stringtab (4) (139) (16) (3)
137. internal/coverage/test (0) (0) (1) (5)
138. internal/coverage/uleb128 (3) (20) (1) (3)
139. internal/cpu (12) (450) (2) (2) - implements processor feature detection used by the Go standard library.
140. internal/dag (0) (380) (15) (5) - implements a language for expressing directed acyclic graphs.
141. internal/diff (0) (261) (15) (5)
142. internal/filepathlite (2) (326) (12) (2) - implements a subset of path/filepath, only using packages which may be imported by "os".
143. internal/fmtsort (2) (154) (10) (2) - provides a general stable ordering mechanism for maps, on behalf of the fmt and text/template packages.
144. internal/fuzz (1) (3999) (20) (1) - provides common fuzzing functionality for tests built with "go test" and for programs that use fuzzing functionality in the testing package.
145. internal/goarch (12) (105) (1) (1) - package goarch contains GOARCH-specific constants.
146. internal/godebug (17) (310) (8) (1) - makes the settings in the $GODEBUG environment variable available to other packages.
147. internal/godebugs (3) (85) (1) (1) - provides a table of known GODEBUG settings, for use by a variety of other packages, including internal/godebug, runtime, runtime/metrics, and cmd/go/internal/load.
148. internal/goexperiment (3) (238) (1) (2) - implements support for toolchain experiments.
149. internal/goos (3) (41) (1) (2) - package goos contains GOOS-specific constants.
150. internal/goroot (1) (139) (16) (2)
151. internal/gover (1) (223) (2) (3) - implements support for Go toolchain versions like 1.21.0 and 1.21rc1.
152. internal/goversion (2) (12) (1) (2)
153. internal/itoa (6) (57) (1) (2)
154. internal/lazyregexp (1) (78) (14) (3) - is a thin wrapper over regexp, allowing the use of global regexp variables without forcing them to be compiled at init.
155. internal/lazytemplate (0) (52) (17) (5) - is a thin wrapper over text/template, allowing the use of global template variables without forcing them to be parsed at init.
156. internal/msan (1) (37) (2) (2) - contains helper functions for manually instrumenting code for the memory sanitizer.
157. internal/nettrace (2) (46) (1) (2) - contains internal hooks for tracing activity in the net package.
158. internal/obscuretestdata (0) (65) (14) (5) - contains functionality used by tests to more easily work with testdata that must be obscured primarily due to golang.org/issue/34986.
159. internal/oserror (2) (18) (8) (2) - defines errors values used in the os package.
160. internal/pkgbits (1) (1312) (17) (2) - implements low-level coding abstractions for Unified IR's export data format.
161. internal/platform (2) (403) (1) (1)
162. internal/poll (3) (2201) (11) (2) - supports non-blocking I/O on file descriptors with polling.
163. internal/profile (2) (2537) (17) (1) - represents a pprof profile as a directed graph.
164. internal/profilerecord (2) (28) (1) (2) - holds internal types used to represent profiling records with deep stack traces.
165. internal/race (4) (53) (2) (2) - contains helper functions for manually instrumenting code for the race detector.
166. internal/reflectlite (4) (1199) (6) (2) - implements lightweight version of reflect, not using any package except for "runtime", "unsafe", and "internal/abi"
167. internal/runtime/atomic (3) (841) (2) (2) - provides atomic operations, independent of sync/atomic, to the runtime.
168. internal/runtime/exithook (2) (85) (3) (2) - provides limited support for on-exit cleanup.
169. internal/runtime/syscall (2) (85) (2) (2) - provides the syscall primitives required for the runtime.
170. internal/saferio (8) (132) (9) (1) - provides I/O functions that avoid allocating large amounts of memory unnecessarily.
171. internal/singleflight (1) (123) (7) (2) - provides a duplicate function call suppression mechanism.
172. internal/stringslite (9) (150) (4) (2) - implements a subset of strings, only using packages that may be imported by "os".
173. internal/syscall/execenv (2) (19) (10) (2)
174. internal/syscall/unix (5) (490) (10) (2)
175. internal/sysinfo (1) (99) (14) (2) - implements high level hardware information gathering that can be used for debugging or information purposes.
176. internal/testenv (0) (847) (17) (5) - provides information about what functionality is available in different testing environments run by the Go team.
177. internal/testlog (2) (114) (7) (1) - provides a back-channel communication path between tests and package os, so that cmd/go can see which environment variables and files a test consults.
178. internal/testpty (0) (51) (15) (5) - is a simple pseudo-terminal package for Unix systems, implemented by calling C functions via cgo.
179. internal/trace (3) (6313) (18) (1)
180. internal/trace/event (6) (128) (1) (1)
181. internal/trace/event/go122 (3) (511) (15) (1)
182. internal/trace/internal/oldtrace (1) (1716) (17) (2) - implements a parser for Go execution traces from versions 1.11–1.21.
184. internal/trace/raw (2) (567) (17) (1) - provides an interface to interpret and emit Go execution traces.
185. internal/trace/testtrace (0) (516) (19) (5)
186. internal/trace/traceviewer (0) (1885) (23) (5)
187. internal/trace/traceviewer/format (1) (79) (1) (1) - traceviewer provides definitions of the JSON data structures used by the Chrome trace viewer.
188. internal/trace/version (4) (71) (16) (1)
189. internal/txtar (2) (140) (15) (1) - implements a trivial text-based file archive format.
190. internal/types/errors (1) (1685) (9) (2)
191. internal/unsafeheader (2) (37) (2) (2) - contains header declarations for the Go runtime's slice and string implementations.
192. internal/weak (1) (83) (6) (4) - The weak package is a package for managing weak pointers.
193. internal/xcoff (2) (1286) (16) (1) - implements access to XCOFF (Extended Common Object File Format) files.
194. internal/zstd (1) (2297) (15) (2) - provides a decompressor for zstd streams, described in RFC 8878.
195. io (129) (1065) (8) (1) - provides basic interfaces to I/O primitives.
196. io/fs (18) (916) (11) (1) - defines basic interfaces to a file system.
197. io/ioutil (0) (139) (14) (5) - implements some I/O utility functions.
198. iter (4) (453) (6) (2) - provides basic definitions and operations related to iterators over sequences.
199. log (13) (458) (15) (1) - implements a simple logging package.
200. log/internal (2) (12) (1) (2) - contains definitions used by both log and log/slog.
201. log/slog (3) (2820) (16) (1) - provides structured logging, in which log records include a message, a severity level, and various other attributes expressed as key-value pairs.
202. log/slog/internal (1) (9) (1) (2)
203. log/slog/internal/benchmarks (0) (198) (17) (5) - contains benchmarks for slog.
204. log/slog/internal/buffer (2) (66) (7) (1) - provides a pool-allocated byte buffer.
205. log/slog/internal/slogtest (0) (18) (17) (5) - contains support functions for testing slog.
206. log/syslog (0) (364) (16) (5) - provides a simple interface to the system log service.
207. maps (1) (134) (7) (2) - defines various functions useful with maps of any type.
208. math (36) (6039) (3) (1) - provides basic constants and mathematical functions.
209. math/big (14) (9523) (15) (2) - implements arbitrary-precision arithmetic (big numbers).
210. math/bits (30) (693) (2) (1) - implements bit counting and manipulation functions for the predeclared unsigned integer types.
211. math/cmplx (0) (1131) (4) (5) - provides basic constants and mathematical functions for complex numbers.
212. math/rand (6) (1254) (9) (1) - implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
213. math/rand/v2 (2) (1037) (8) (1) - implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
214. mime (4) (1177) (15) (1) - implements parts of the MIME spec.
215. mime/multipart (1) (1010) (17) (2) - implements MIME multipart parsing, as defined in RFC 2046.
216. mime/quotedprintable (1) (311) (15) (3) - implements quoted-printable encoding as specified by RFC 2045.
217. net (18) (11920) (14) (1) - provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
218. net/http (9) (27710) (22) (1) - provides HTTP client and server implementations.
219. net/http/cgi (1) (776) (23) (1) - implements CGI (Common Gateway Interface) as specified in RFC 3875.
220. net/http/cookiejar (0) (699) (23) (5) - implements an in-memory RFC 6265-compliant http.CookieJar.
221. net/http/fcgi (0) (672) (24) (5) - implements the FastCGI protocol.
222. net/http/httptest (0) (738) (23) (5) - provides utilities for HTTP testing.
223. net/http/httptrace (2) (255) (21) (1) - provides mechanisms to trace the events within HTTP client requests.
224. net/http/httputil (0) (1654) (23) (5) - provides HTTP utility functions, complementing the more common ones in the net/http package.
225. net/http/internal (2) (287) (15) (1) - contains HTTP internals shared by net/http and net/http/httputil.
226. net/http/internal/ascii (3) (61) (10) (1)
227. net/http/internal/testcert (1) (65) (10) (1) - contains a test-only localhost certificate.
228. net/http/pprof (0) (468) (23) (5) - serves via its HTTP server runtime profiling data in the format expected by the pprof visualization tool.
229. net/internal/cgotest (0) (0) (1) (5)
230. net/internal/socktest (0) (491) (15) (5) - provides utilities for socket testing.
231. net/mail (0) (975) (16) (5) - implements parsing of mail messages.
232. net/netip (1) (1631) (11) (2) - defines an IP address type that's a small value type.
233. net/rpc (1) (1142) (23) (1) - provides access to the exported methods of an object across a network or other I/O connection.
234. net/rpc/jsonrpc (0) (258) (24) (5) - implements a JSON-RPC 1.0 ClientCodec and ServerCodec for the rpc package.
235. net/smtp (0) (541) (21) (5) - implements the Simple Mail Transfer Protocol as defined in RFC 5321.
236. net/textproto (9) (1286) (15) (1) - implements generic support for text-based request/response protocols in the style of HTTP, NNTP, and SMTP.
237. net/url (8) (1309) (15) (1) - parses URLs and implements query escaping.
238. os (65) (4578) (13) (1) - provides a platform-independent interface to operating system functionality.
239. os/exec (10) (1424) (15) (1) - runs external commands.
240. os/exec/internal/fdtest (0) (19) (10) (5) - provides test helpers for working with file descriptors across exec.
241. os/signal (1) (628) (14) (1) - implements access to incoming signals.
242. os/user (1) (591) (15) (1) - allows user account lookups by name or id.
243. path (12) (456) (8) (1) - implements utility routines for manipulating slash-separated paths.
244. path/filepath (23) (1050) (14) (1) - implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
245. plugin (0) (137) (8) (5) - implements loading and symbol resolution of Go plugins.
246. reflect (27) (8560) (9) (1) - implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
247. reflect/internal/example1 (0) (10) (1) (5)
248. reflect/internal/example2 (0) (10) (1) (5)
249. regexp (9) (2723) (11) (1) - implements regular expression search.
250. regexp/syntax (1) (3721) (10) (2) - parses regular expressions into parse trees and compiles parse trees into programs.
251. runtime (49) (69592) (5) (1) - contains operations that interact with Go's runtime system, such as functions to control goroutines.
252. runtime/coverage (0) (66) (19) (5)
253. runtime/debug (2) (634) (15) (1) - contains facilities for programs to debug themselves while they are running.
254. runtime/internal/math (1) (55) (2) (2)
255. runtime/internal/startlinetest (0) (13) (1) (5) - contains helpers for runtime_test.TestStartLineAsm.
256. runtime/internal/sys (1) (304) (2) (2) - package sys contains system- and configuration- and architecture-specific constants used by the runtime.
257. runtime/internal/wasitest (0) (0) (1) (5)
258. runtime/metrics (0) (1118) (6) (5) - provides a stable interface to access implementation-defined metrics exported by the Go runtime.
259. runtime/pprof (2) (2417) (17) (1) - writes runtime profiling data in the format expected by the pprof visualization tool.
260. runtime/race (0) (18) (2) (5) - implements data race detection logic.
261. runtime/race/internal/amd64v1 (1) (10) (1) (1)
262. runtime/trace (2) (352) (15) (1) - contains facilities for programs to generate traces for the Go execution tracer.
263. slices (52) (1773) (7) (1) - defines various functions useful with slices of any type.
264. sort (18) (1421) (8) (1) - provides primitives for sorting slices and user-defined collections.
265. strconv (75) (5254) (8) (1) - implements conversions to and from string representations of basic data types.
266. strings (92) (2265) (9) (1) - implements simple functions to manipulate UTF-8 encoded strings.
267. structs (0) (40) (1) (5) - defines marker types that can be used as struct fields to modify the properties of a struct.
268. sync (82) (2177) (6) (1) - provides basic synchronization primitives such as mutual exclusion locks.
269. sync/atomic (29) (678) (2) (1) - provides low-level atomic memory primitives useful for implementing synchronization algorithms.
270. syscall (18) (8350) (9) (1) - contains an interface to the low-level operating system primitives.
271. testing (4) (4723) (16) (1) - provides support for automated testing of Go packages.
272. testing/fstest (0) (865) (17) (5) - implements support for testing implementations and users of file systems.
273. testing/internal/testdeps (0) (240) (21) (5) - provides access to dependencies needed by test execution.
274. testing/iotest (1) (357) (16) (1) - implements Readers and Writers useful mainly for testing.
275. testing/quick (0) (385) (16) (5) - implements utility functions to help with black box testing.
276. testing/slogtest (0) (375) (17) (5) - implements support for testing implementations of log/slog.Handler.
277. text/scanner (1) (792) (15) (2) - provides a scanner and tokenizer for UTF-8-encoded text.
278. text/tabwriter (3) (601) (15) (2) - implements a write filter (tabwriter.Writer) that translates tabbed columns in input into properly aligned text.
279. text/template (2) (2818) (16) (1) - implements data-driven templates for generating textual output.
280. text/template/parse (2) (2528) (15) (2) - builds parse trees for templates as defined by text/template and html/template.
281. time (47) (5360) (10) (1) - provides functionality for measuring and displaying time.
282. time/tzdata (0) (115) (10) (5) - provides an embedded copy of the timezone database.
283. unicode (29) (8923) (1) (1) - provides data and functions to test some properties of Unicode code points.
284. unicode/utf16 (3) (144) (1) (2) - implements encoding and decoding of UTF-16 sequences.
285. unicode/utf8 (50) (583) (1) (1) - implements functions and constants to support text encoded in UTF-8.
286. unique (1) (272) (10) (3) - The unique package provides facilities for canonicalizing ("interning") comparable values.
287. unsafe (77) (271) (1) (1) - contains operations that step around the type safety of Go programs.
288. vendor/golang.org/x/crypto/chacha20 (1) (453) (11) (3) - implements the ChaCha20 and XChaCha20 encryption algorithms as specified in RFC 8439 and draft-irtf-cfrg-xchacha-01.
289. vendor/golang.org/x/crypto/chacha20poly1305 (2) (351) (15) (2) - implements the ChaCha20-Poly1305 AEAD and its extended nonce variant XChaCha20-Poly1305, as specified in RFC 8439 and draft-irtf-cfrg-xchacha-01.
290. vendor/golang.org/x/crypto/cryptobyte (3) (1358) (17) (2) - contains types that help with parsing and constructing length-prefixed, binary messages, including ASN.1 DER.
291. vendor/golang.org/x/crypto/cryptobyte/asn1 (3) (46) (1) (2) - contains supporting types for parsing and building ASN.1 messages with the cryptobyte package.
292. vendor/golang.org/x/crypto/hkdf (2) (95) (13) (2) - implements the HMAC-based Extract-and-Expand Key Derivation Function (HKDF) as defined in RFC 5869.
293. vendor/golang.org/x/crypto/internal/alias (2) (31) (2) (3) - implements memory aliasing tests.
294. vendor/golang.org/x/crypto/internal/poly1305 (1) (458) (11) (3) - implements Poly1305 one-time message authentication code as specified in https://cr.yp.to/mac/poly1305-20050329.pdf.
295. vendor/golang.org/x/crypto/sha3 (2) (631) (15) (2) - implements the SHA-3 fixed-output-length hash functions and the SHAKE variable-output-length hash functions defined by FIPS-202.
296. vendor/golang.org/x/net/dns/dnsmessage (1) (2712) (8) (2) - provides a mostly RFC 1035 compliant implementation of DNS message packing and unpacking.
297. vendor/golang.org/x/net/http/httpguts (4) (397) (19) (1) - provides functions implementing various details of the HTTP specification.
298. vendor/golang.org/x/net/http/httpproxy (1) (367) (19) (2) - provides support for HTTP proxy determination based on environment variables, as provided by net/http's ProxyFromEnvironment function.
299. vendor/golang.org/x/net/http2/hpack (1) (1585) (15) (2) - implements HPACK, a compression format for efficiently representing HTTP header fields in the context of HTTP/2.
300. vendor/golang.org/x/net/idna (3) (6341) (18) (2) - implements IDNA2008 using the compatibility processing defined by UTS (Unicode Technical Standard) #46, which defines a standard to deal with the transition from IDNA2003.
301. vendor/golang.org/x/net/nettest (0) (832) (17) (5) - provides utilities for network testing.
302. vendor/golang.org/x/sys/cpu (2) (690) (14) (3) - implements processor feature detection for various CPU architectures.
303. vendor/golang.org/x/text/secure/bidirule (1) (347) (17) (3) - implements the Bidi Rule defined by RFC 5893.
304. vendor/golang.org/x/text/transform (2) (709) (10) (4) - provides reader and writer wrappers that transform the bytes passing through as well as various transformations.
305. vendor/golang.org/x/text/unicode/bidi (2) (4059) (16) (3) - contains functionality for bidirectional text support.
306. vendor/golang.org/x/text/unicode/norm (1) (10141) (15) (3) - contains types and functions for normalizing Unicode strings.