Imports of package firebirdsql

PathSynopsis
bufioPackage 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.
bytesPackage bytes implements functions for the manipulation of byte slices.
container/listPackage list implements a doubly linked list.
contextPackage context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
crypto/rc4Package rc4 implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography.
crypto/sha1Package sha1 implements the SHA-1 hash algorithm as defined in RFC 3174.
crypto/sha256Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4.
database/sqlPackage sql provides a generic interface around SQL (or SQL-like) databases.
database/sql/driverPackage driver defines interfaces to be implemented by database drivers as used by package sql.
encoding/binaryPackage binary implements simple translation between numbers and byte sequences and encoding and decoding of varints.
encoding/hexPackage hex implements hexadecimal encoding and decoding.
errorsPackage errors implements functions to manipulate errors.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
github.com/kardianos/osextExtensions to the standard "os" package.
github.com/shopspring/decimalPackage decimal implements an arbitrary precision fixed-point decimal.
gitlab.com/nyarla/go-crypt
golang.org/x/crypto/chacha20Package chacha20 implements the ChaCha20 and XChaCha20 encryption algorithms as specified in RFC 8439 and draft-irtf-cfrg-xchacha-01.
golang.org/x/text/encoding/charmapPackage charmap provides simple character encodings such as IBM Code Page 437 and Windows 1252.
golang.org/x/text/encoding/japanesePackage japanese provides Japanese encodings such as EUC-JP and Shift JIS.
golang.org/x/text/encoding/koreanPackage korean provides Korean encodings such as EUC-KR.
golang.org/x/text/encoding/simplifiedchinesePackage simplifiedchinese provides Simplified Chinese encodings such as GBK.
golang.org/x/text/encoding/traditionalchinesePackage traditionalchinese provides Traditional Chinese encodings such as Big5.
hashPackage hash provides interfaces for hash functions.
ioPackage io provides basic interfaces to I/O primitives.
mathPackage math provides basic constants and mathematical functions.
math/bigPackage big implements arbitrary-precision arithmetic (big numbers).
math/randPackage rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
modernc.org/mathutilPackage mathutil provides utilities supplementing the standard 'math' and 'math/rand' packages.
netPackage net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
net/netipPackage netip defines an IP address type that's a small value type.
net/urlPackage url parses URLs and implements query escaping.
osPackage os provides a platform-independent interface to operating system functionality.
reflectPackage reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
sortPackage sort provides primitives for sorting slices and user-defined collections.
strconvPackage strconv implements conversions to and from string representations of basic data types.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
syncPackage sync provides basic synchronization primitives such as mutual exclusion locks.
sync/atomicPackage atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms.
syscallPackage syscall contains an interface to the low-level operating system primitives.
timePackage time provides functionality for measuring and displaying time.