| 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. |
| bytes | Package bytes implements functions for the manipulation of byte slices. |
| context | Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes. |
| crypto/rand | Package rand implements a cryptographically secure random number generator. |
| crypto/tls | Package tls partially implements TLS 1.2, as specified in RFC 5246, and TLS 1.3, as specified in RFC 8446. |
| crypto/x509 | Package x509 implements a subset of the X.509 standard. |
| 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/fsnotify/fsnotify | Package fsnotify provides a cross-platform interface for file system notifications. |
| github.com/gorilla/mux | Package mux implements a request router and dispatcher. |
| github.com/open-policy-agent/opa/ast | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/bundle | Package bundle implements bundle loading. |
| github.com/open-policy-agent/opa/internal/config | Package config implements helper functions to parse OPA's configuration. |
| github.com/open-policy-agent/opa/internal/distributedtracing | |
| github.com/open-policy-agent/opa/internal/logging | |
| github.com/open-policy-agent/opa/internal/prometheus | |
| github.com/open-policy-agent/opa/internal/report | Package report provides functions to report OPA's version information to an external service and process the response. |
| github.com/open-policy-agent/opa/internal/runtime | Package runtime contains utilities to return runtime information on the OPA instance. |
| github.com/open-policy-agent/opa/internal/runtime/init | Package init is an internal package with helpers for data and policy loading during initialization. |
| github.com/open-policy-agent/opa/internal/uuid | |
| github.com/open-policy-agent/opa/loader | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/logging | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/metrics | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/plugins | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/plugins/discovery | Package discovery implements configuration discovery. |
| github.com/open-policy-agent/opa/plugins/logs | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/repl | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/server | Package server contains the policy engine's server handlers. |
| github.com/open-policy-agent/opa/server/types | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/storage | Package storage exposes the policy engine's storage layer. |
| github.com/open-policy-agent/opa/storage/inmem | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/topdown/print | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/tracing | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/open-policy-agent/opa/util | Package util provides generic utilities used throughout the policy engine. |
| github.com/open-policy-agent/opa/version | Deprecated: This package is intended for older projects transitioning from OPA v0.x and will remain for the lifetime of OPA v1.x, but its use is not recommended. |
| github.com/sirupsen/logrus | Package logrus is a structured logger for Go, completely API compatible with the standard library logger. |
| go.opentelemetry.io/otel/exporters/otlp/otlptrace | Package otlptrace contains abstractions for OTLP span exporters. |
| go.uber.org/automaxprocs/maxprocs | Package maxprocs lets Go programs easily configure runtime.GOMAXPROCS to match the configured Linux CPU quota. |
| io | Package io provides basic interfaces to I/O primitives. |
| io/ioutil | Package ioutil implements some I/O utility 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. |
| net | Package net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. |
| net/http | Package http provides HTTP client and server implementations. |
| net/url | Package url parses URLs and implements query escaping. |
| os | Package os provides a platform-independent interface to operating system functionality. |
| os/signal | Package signal implements access to incoming signals. |
| 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. |