Overview
Statistics (detailed ones)
	Total 102 packages analyzed and 650 Go files
	(198624 lines of code) parsed. On average,
	* each Go source file imports 2.12 packages
	  and contains 306 lines of code.
	* each package depends on 5.22 other packages,
	  contains 6.84 source code files, and exports
	  - 5.39 type names,
	  - 3.61 variables,
	  - 22.50 constants,
	  - 11.43 functions.
All Packages (sort packages by:  |  |  | )
1. gitlab.com/pcanilho/goneo (0) (642) (20) (0)
/* */
2. bufio (1) (1201) (8) (6) - 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.
3. builtin (101) (262) (1) (2)
4. bytes (10) (1796) (7) (3) - implements functions for the manipulation of byte slices.
5. container/list (3) (238) (1) (4) - implements a doubly linked list.
6. context (5) (563) (9) (3) - defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
7. crypto (9) (203) (8) (4) - collects common cryptographic constants.
8. crypto/aes (4) (954) (10) (4) - implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197.
9. crypto/cipher (8) (983) (9) (4) - implements standard block cipher modes that can be wrapped around low-level block cipher implementations.
10. crypto/des (2) (560) (10) (4) - 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.
11. crypto/dsa (1) (309) (13) (4) - implements the Digital Signature Algorithm, as defined in FIPS 186-3.
12. crypto/ecdsa (2) (388) (15) (4) - implements the Elliptic Curve Digital Signature Algorithm, as defined in FIPS 186-3.
13. crypto/ed25519 (2) (246) (14) (4) - implements the Ed25519 signature algorithm.
15. crypto/elliptic (3) (1826) (13) (4) - implements several standard elliptic curves over prime fields.
16. crypto/hmac (2) (172) (8) (5) - implements the Keyed-Hash Message Authentication Code (HMAC) as defined in U.S. Federal Information Processing Standards Publication 198.
17. crypto/internal/randutil (3) (38) (7) (5) - contains internal randomness utilities for various crypto packages.
18. crypto/internal/subtle (4) (34) (2) (5) - implements functions that are often useful in cryptographic code but require careful thought to use correctly.
19. crypto/md5 (2) (333) (9) (4) - implements the MD5 hash algorithm as defined in RFC 1321.
20. crypto/rand (3) (364) (13) (5) - implements a cryptographically secure random number generator.
21. crypto/rc4 (1) (80) (7) (5) - implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography.
22. crypto/rsa (2) (1285) (14) (4) - implements RSA encryption as specified in PKCS #1 and RFC 8017.
23. crypto/sha1 (2) (383) (9) (4) - implements the SHA-1 hash algorithm as defined in RFC 3174.
24. crypto/sha256 (2) (418) (9) (4) - implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4.
25. crypto/sha512 (4) (536) (9) (4) - implements the SHA-384, SHA-512, SHA-512/224, and SHA-512/256 hash algorithms as defined in FIPS 180-4.
26. crypto/subtle (7) (61) (1) (5) - implements functions that are often useful in cryptographic code but require careful thought to use correctly.
27. crypto/tls (1) (10657) (17) (4) - partially implements TLS 1.2, as specified in RFC 5246, and TLS 1.3, as specified in RFC 8446.
28. crypto/x509 (3) (5223) (16) (3) - parses X.509-encoded keys and certificates.
29. crypto/x509/internal/macos (1) (265) (8) (4) - provides cgo-less wrappers for Core Foundation and Security.framework, similarly to how package syscall provides access to libSystem.dylib.
30. crypto/x509/pkix (1) (316) (14) (4) - contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP.
31. encoding (1) (48) (1) (6) - defines interfaces shared by other packages that convert data to and from byte-level and textual representations.
32. encoding/asn1 (3) (2061) (13) (4) - implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690.
33. encoding/base64 (2) (614) (9) (5) - implements base64 encoding as specified by RFC 4648.
34. encoding/binary (17) (871) (8) (5) - implements simple translation between numbers and byte sequences and encoding and decoding of varints.
35. encoding/hex (2) (326) (12) (4) - implements hexadecimal encoding and decoding.
36. encoding/json (1) (4387) (12) (5) - implements encoding and decoding of JSON as defined in RFC 7159.
37. encoding/pem (2) (340) (10) (4) - implements the PEM data encoding, which originated in Privacy Enhanced Mail.
38. errors (46) (172) (5) (3) - implements functions to manipulate errors.
39. fmt (20) (3389) (11) (2) - implements formatted I/O with functions analogous to C's printf and scanf.
40. github.com/neo4j/neo4j-go-driver/v4/neo4j (1) (2309) (19) (1) - provides required functionality to connect and execute statements against a Neo4j Database.
41. github.com/neo4j/neo4j-go-driver/v4/neo4j/db (6) (422) (13) (2) - defines generic database functionality.
42. github.com/neo4j/neo4j-go-driver/v4/neo4j/dbtype (3) (184) (12) (1) - contains definitions of supported database types.
43. github.com/neo4j/neo4j-go-driver/v4/neo4j/internal/bolt (1) (3650) (14) (3) - contains implementations of the database functionality.
44. github.com/neo4j/neo4j-go-driver/v4/neo4j/internal/connector (1) (100) (18) (2) - is responsible for connecting to a database server.
45. github.com/neo4j/neo4j-go-driver/v4/neo4j/internal/packstream (1) (540) (12) (4) - handles serialization of data sent to database server and deserialization of data received from database server.
46. github.com/neo4j/neo4j-go-driver/v4/neo4j/internal/pool (1) (633) (14) (2) - handles the database connection pool.
47. github.com/neo4j/neo4j-go-driver/v4/neo4j/internal/retry (1) (193) (14) (2) - handles retry operations.
49. github.com/neo4j/neo4j-go-driver/v4/neo4j/log (7) (206) (12) (2) - defines the logging interface used internally by the driver and provides default logging implementations.
50. hash (9) (58) (7) (5) - provides interfaces for hash functions.
51. internal/bytealg (7) (298) (2) (3)
52. internal/cpu (9) (396) (1) (4) - implements processor feature detection used by the Go standard library.
53. internal/fmtsort (1) (220) (8) (3) - provides a general stable ordering mechanism for maps, on behalf of the fmt and text/template packages.
54. internal/nettrace (1) (45) (1) (4) - contains internal hooks for tracing activity in the net package.
55. internal/oserror (3) (18) (6) (4) - defines errors values used in the os package.
56. internal/poll (2) (1513) (9) (4) - supports non-blocking I/O on file descriptors with polling.
57. internal/race (2) (53) (2) (4) - contains helper functions for manually instrumenting code for the race detector.
58. internal/reflectlite (3) (1518) (4) (4) - implements lightweight version of reflect, not using any package except for "runtime" and "unsafe".
59. internal/singleflight (1) (123) (5) (4) - provides a duplicate function call suppression mechanism.
60. internal/syscall/execenv (1) (19) (8) (4)
61. internal/syscall/unix (1) (63) (8) (4)
62. internal/testlog (1) (102) (5) (4) - 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.
63. internal/unsafeheader (3) (37) (2) (3) - contains header declarations for the Go runtime's slice and string implementations.
64. io (31) (958) (6) (3) - provides basic interfaces to I/O primitives.
65. io/fs (2) (771) (9) (4) - defines basic interfaces to a file system.
66. math (11) (5517) (3) (3) - provides basic constants and mathematical functions.
67. math/big (10) (8486) (12) (4) - implements arbitrary-precision arithmetic (big numbers).
68. math/bits (9) (686) (2) (4) - implements bit counting and manipulation functions for the predeclared unsigned integer types.
69. math/rand (2) (1129) (5) (4) - implements pseudo-random number generators.
70. net (5) (10403) (12) (3) - provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
71. net/url (2) (1224) (12) (3) - parses URLs and implements query escaping.
72. os (8) (3513) (10) (3) - provides a platform-independent interface to operating system functionality.
73. path (1) (464) (6) (5) - implements utility routines for manipulating slash-separated paths.
74. reflect (11) (6424) (7) (2) - implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
75. regexp (1) (2703) (9) (2) - implements regular expression search.
76. regexp/syntax (1) (3298) (8) (3) - parses regular expressions into parse trees and compiles parse trees into programs.
77. runtime (14) (53726) (3) (3) - contains operations that interact with Go's runtime system, such as functions to control goroutines.
78. runtime/internal/atomic (1) (160) (2) (4)
79. runtime/internal/math (1) (19) (2) (4)
80. runtime/internal/sys (2) (357) (1) (4) - package sys contains system- and configuration- and architecture-specific constants used by the runtime.
81. sort (12) (960) (5) (3) - provides primitives for sorting slices and user-defined collections.
82. strconv (19) (5108) (6) (3) - implements conversions to and from string representations of basic data types.
83. strings (16) (2107) (7) (2) - implements simple functions to manipulate UTF-8 encoded strings.
84. sync (26) (1762) (4) (3) - provides basic synchronization primitives such as mutual exclusion locks.
85. sync/atomic (10) (230) (2) (4) - provides low-level atomic memory primitives useful for implementing synchronization algorithms.
86. syscall (8) (7611) (7) (4) - contains an interface to the low-level operating system primitives.
87. time (20) (4632) (8) (3) - provides functionality for measuring and displaying time.
88. unicode (7) (8593) (1) (3) - provides data and functions to test some properties of Unicode code points.
89. unicode/utf16 (2) (108) (1) (5) - implements encoding and decoding of UTF-16 sequences.
90. unicode/utf8 (13) (552) (1) (3) - implements functions and constants to support text encoded in UTF-8.
91. unsafe (21) (205) (1) (3) - contains operations that step around the type safety of Go programs.
92. vendor/golang.org/x/crypto/chacha20 (1) (453) (10) (6) - implements the ChaCha20 and XChaCha20 encryption algorithms as specified in RFC 8439 and draft-irtf-cfrg-xchacha-01.
93. vendor/golang.org/x/crypto/chacha20poly1305 (1) (347) (12) (5) - implements the ChaCha20-Poly1305 AEAD and its extended nonce variant XChaCha20-Poly1305, as specified in RFC 8439 and draft-irtf-cfrg-xchacha-01.
94. vendor/golang.org/x/crypto/cryptobyte (3) (1250) (14) (4) - contains types that help with parsing and constructing length-prefixed, binary messages, including ASN.1 DER.
95. vendor/golang.org/x/crypto/cryptobyte/asn1 (3) (46) (1) (4) - contains supporting types for parsing and building ASN.1 messages with the cryptobyte package.
96. vendor/golang.org/x/crypto/curve25519 (1) (1163) (12) (5) - provides an implementation of the X25519 function, which performs scalar multiplication on the elliptic curve known as Curve25519.
97. vendor/golang.org/x/crypto/hkdf (1) (93) (9) (5) - implements the HMAC-based Extract-and-Expand Key Derivation Function (HKDF) as defined in RFC 5869.
98. vendor/golang.org/x/crypto/internal/subtle (2) (32) (2) (6) - implements functions that are often useful in cryptographic code but require careful thought to use correctly.
99. vendor/golang.org/x/crypto/poly1305 (1) (477) (9) (6) - implements Poly1305 one-time message authentication code as specified in https://cr.yp.to/mac/poly1305-20050329.pdf.
100. vendor/golang.org/x/net/dns/dnsmessage (1) (2587) (6) (4) - provides a mostly RFC 1035 compliant implementation of DNS message packing and unpacking.
101. vendor/golang.org/x/net/route (1) (1185) (11) (4) - provides basic functions for the manipulation of packet routing facilities on BSD variants.
102. vendor/golang.org/x/sys/cpu (1) (503) (11) (6) - implements processor feature detection for various CPU architectures.