mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-07-16 09:24:26 -04:00
2a7e660e97
- Updated the `github.com/ollama/ollama` dependency from v0.17.5 to v0.18.0 in go.mod files for multiple modules and examples, ensuring compatibility with the latest features and improvements. - Updated go.sum files to reflect the new dependency version, maintaining consistency across the project.
381 lines
17 KiB
Modula-2
381 lines
17 KiB
Modula-2
module github.com/vxcontrol/langchaingo
|
|
|
|
go 1.24.1
|
|
|
|
// Note: Thanks to Go's module graph pruning (https://go.dev/ref/mod#graph-pruning),
|
|
// importing langchaingo does NOT pull in all dependencies listed below. You only
|
|
// get dependencies for the specific packages you import. For example:
|
|
// - import "github.com/vxcontrol/langchaingo/llms/openai" → only OpenAI-related deps
|
|
// - import "github.com/vxcontrol/langchaingo/vectorstores/chroma" → only Chroma deps
|
|
// This keeps your builds lean despite this large go.mod file.
|
|
|
|
// Core dependencies
|
|
require github.com/google/uuid v1.6.0
|
|
|
|
// Testing
|
|
require (
|
|
github.com/stretchr/testify v1.10.0
|
|
github.com/testcontainers/testcontainers-go v0.38.0
|
|
github.com/testcontainers/testcontainers-go/modules/chroma v0.37.0
|
|
github.com/testcontainers/testcontainers-go/modules/milvus v0.37.0
|
|
github.com/testcontainers/testcontainers-go/modules/mongodb v0.37.0
|
|
github.com/testcontainers/testcontainers-go/modules/mysql v0.37.0
|
|
github.com/testcontainers/testcontainers-go/modules/opensearch v0.37.0
|
|
github.com/testcontainers/testcontainers-go/modules/postgres v0.37.0
|
|
github.com/testcontainers/testcontainers-go/modules/redis v0.37.0
|
|
github.com/testcontainers/testcontainers-go/modules/weaviate v0.37.0
|
|
)
|
|
|
|
// LLM providers
|
|
require (
|
|
github.com/gage-technologies/mistral-go v1.1.0
|
|
github.com/ollama/ollama v0.18.0
|
|
github.com/pkoukk/tiktoken-go v0.1.8
|
|
google.golang.org/genai v1.42.0
|
|
)
|
|
|
|
// Vector stores
|
|
require (
|
|
github.com/amikos-tech/chroma-go v0.2.3
|
|
github.com/milvus-io/milvus-sdk-go/v2 v2.4.0
|
|
github.com/milvus-io/milvus/client/v2 v2.5.2
|
|
github.com/opensearch-project/opensearch-go v1.1.0
|
|
github.com/pgvector/pgvector-go v0.1.1
|
|
github.com/pinecone-io/go-pinecone/v4 v4.0.1
|
|
github.com/redis/rueidis v1.0.34
|
|
github.com/testcontainers/testcontainers-go/modules/mariadb v0.38.0
|
|
github.com/weaviate/weaviate v1.30.20
|
|
github.com/weaviate/weaviate-go-client/v5 v5.0.2
|
|
go.mongodb.org/mongo-driver v1.14.0
|
|
go.mongodb.org/mongo-driver/v2 v2.2.0
|
|
)
|
|
|
|
// Cloud platforms and AI services
|
|
require (
|
|
cloud.google.com/go/aiplatform v1.85.0
|
|
cloud.google.com/go/vertexai v0.12.0
|
|
github.com/aws/aws-sdk-go-v2 v1.41.2
|
|
github.com/aws/aws-sdk-go-v2/config v1.32.10
|
|
github.com/aws/aws-sdk-go-v2/service/bedrockagent v1.52.4
|
|
github.com/aws/aws-sdk-go-v2/service/bedrockagentruntime v1.51.4
|
|
github.com/aws/aws-sdk-go-v2/service/bedrockruntime v1.50.0
|
|
github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2
|
|
github.com/aws/smithy-go v1.24.1
|
|
golang.org/x/oauth2 v0.30.0
|
|
google.golang.org/api v0.238.0
|
|
google.golang.org/grpc v1.73.0
|
|
google.golang.org/protobuf v1.36.6
|
|
)
|
|
|
|
// Embeddings and ML
|
|
require (
|
|
github.com/AssemblyAI/assemblyai-go-sdk v1.3.0
|
|
github.com/nlpodyssey/cybertron v0.2.1
|
|
)
|
|
|
|
// Database drivers
|
|
require (
|
|
cloud.google.com/go/alloydbconn v1.13.2
|
|
cloud.google.com/go/cloudsqlconn v1.14.1
|
|
github.com/coder/hnsw v0.6.1
|
|
github.com/go-sql-driver/mysql v1.8.1
|
|
github.com/jackc/pgx/v5 v5.7.2
|
|
github.com/mattn/go-sqlite3 v1.14.24
|
|
)
|
|
|
|
// Document processing and web scraping
|
|
require (
|
|
github.com/PuerkitoBio/goquery v1.10.3
|
|
github.com/gocolly/colly/v2 v2.2.0
|
|
github.com/ledongthuc/pdf v0.0.0-20250511090121-5959a4027728
|
|
github.com/microcosm-cc/bluemonday v1.0.26
|
|
github.com/richardlehane/mscfb v1.0.4
|
|
github.com/tealeg/xlsx v1.0.5
|
|
gitlab.com/golang-commonmark/markdown v0.0.0-20211110145824-bf3e522c626a
|
|
)
|
|
|
|
// Memory and agent tools
|
|
require (
|
|
github.com/getzep/zep-go v1.0.4
|
|
github.com/metaphorsystems/metaphor-go v0.0.0-20230816231421-43794c04824e
|
|
go.starlark.net v0.0.0-20230302034142-4b1e35fe2254
|
|
)
|
|
|
|
// Utilities and helpers
|
|
require (
|
|
github.com/Code-Hex/go-generics-cache v1.3.1
|
|
github.com/Masterminds/sprig/v3 v3.2.3
|
|
github.com/go-openapi/strfmt v0.23.0
|
|
github.com/google/go-cmp v0.7.0
|
|
github.com/nikolalohinski/gonja v1.5.3
|
|
github.com/zeebo/blake3 v0.2.4
|
|
golang.org/x/sync v0.18.0
|
|
golang.org/x/tools v0.38.0
|
|
sigs.k8s.io/yaml v1.4.0
|
|
)
|
|
|
|
// Indirect dependencies (automatically managed)
|
|
|
|
// Cloud platforms and AI services - indirect
|
|
require (
|
|
cloud.google.com/go v0.121.0 // indirect
|
|
cloud.google.com/go/alloydb v1.14.0 // indirect
|
|
cloud.google.com/go/auth v0.16.2 // indirect
|
|
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
|
|
cloud.google.com/go/compute/metadata v0.7.0 // indirect
|
|
cloud.google.com/go/iam v1.5.2 // indirect
|
|
cloud.google.com/go/longrunning v0.6.7 // indirect
|
|
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.5 // indirect
|
|
github.com/aws/aws-sdk-go-v2/credentials v1.19.10
|
|
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.18 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.18 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.18 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.5 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.0 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.18 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/signin v1.0.6 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/sso v1.30.11 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.15 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/sts v1.41.7 // indirect
|
|
github.com/bahlo/generic-list-go v0.2.0 // indirect
|
|
github.com/buger/jsonparser v1.1.1 // indirect
|
|
github.com/google/s2a-go v0.1.9 // indirect
|
|
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
|
|
github.com/googleapis/gax-go/v2 v2.14.2 // indirect
|
|
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
|
|
go.opencensus.io v0.24.0 // indirect
|
|
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
|
|
go.opentelemetry.io/otel v1.36.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.36.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.36.0 // indirect
|
|
google.golang.org/appengine v1.6.8 // indirect
|
|
google.golang.org/genproto v0.0.0-20250505200425-f936aa4a68b2 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20250505200425-f936aa4a68b2 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
|
|
)
|
|
|
|
// Embeddings and ML - indirect
|
|
require (
|
|
github.com/nlpodyssey/gopickle v0.3.0 // indirect
|
|
github.com/nlpodyssey/gotokenizers v0.2.0 // indirect
|
|
github.com/nlpodyssey/spago v1.1.0 // indirect
|
|
)
|
|
|
|
// Vector stores - indirect
|
|
require (
|
|
github.com/Masterminds/semver v1.5.0 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/blang/semver/v4 v4.0.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/cilium/ebpf v0.11.0 // indirect
|
|
github.com/containerd/cgroups/v3 v3.0.3 // indirect
|
|
github.com/coreos/go-semver v0.3.1 // indirect
|
|
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
|
github.com/godbus/dbus/v5 v5.0.4 // indirect
|
|
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
|
|
github.com/google/btree v1.1.3 // indirect
|
|
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1 // indirect
|
|
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
|
|
github.com/jonboulle/clockwork v0.5.0 // indirect
|
|
github.com/milvus-io/milvus-proto/go-api/v2 v2.5.9 // indirect
|
|
github.com/milvus-io/milvus/pkg/v2 v2.5.7 // indirect
|
|
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/opencontainers/runtime-spec v1.0.2 // indirect
|
|
github.com/panjf2000/ants/v2 v2.11.3 // indirect
|
|
github.com/prometheus/client_golang v1.20.5 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/common v0.62.0 // indirect
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
|
github.com/samber/lo v1.27.0 // indirect
|
|
github.com/shirou/gopsutil/v3 v3.24.5 // indirect
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
|
github.com/soheilhy/cmux v0.1.5 // indirect
|
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
|
github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect
|
|
github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
|
github.com/xdg-go/scram v1.1.2 // indirect
|
|
github.com/xdg-go/stringprep v1.0.4 // indirect
|
|
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
|
|
github.com/yalue/onnxruntime_go v1.19.0 // indirect
|
|
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect
|
|
go.etcd.io/bbolt v1.4.3 // indirect
|
|
go.etcd.io/etcd/api/v3 v3.6.7 // indirect
|
|
go.etcd.io/etcd/client/pkg/v3 v3.6.7 // indirect
|
|
go.etcd.io/etcd/client/v3 v3.6.7 // indirect
|
|
go.etcd.io/etcd/pkg/v3 v3.6.7 // indirect
|
|
go.etcd.io/etcd/server/v3 v3.6.7 // indirect
|
|
go.etcd.io/raft/v3 v3.6.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0 // indirect
|
|
go.opentelemetry.io/otel/sdk v1.36.0 // indirect
|
|
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
go.uber.org/automaxprocs v1.5.3 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
go.uber.org/zap v1.27.0 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
|
|
k8s.io/apimachinery v0.28.6 // indirect
|
|
nhooyr.io/websocket v1.8.7 // indirect
|
|
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
|
|
)
|
|
|
|
// Database drivers - indirect
|
|
require (
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
|
)
|
|
|
|
// Cryptography and security - indirect
|
|
require filippo.io/edwards25519 v1.1.0 // indirect
|
|
|
|
// Document processing and web scraping - indirect
|
|
require (
|
|
github.com/andybalholm/cascadia v1.3.3 // indirect
|
|
github.com/antchfx/htmlquery v1.3.4 // indirect
|
|
github.com/antchfx/xmlquery v1.4.4 // indirect
|
|
github.com/antchfx/xpath v1.3.3 // indirect
|
|
github.com/gobwas/glob v0.2.3 // indirect
|
|
github.com/gorilla/css v1.0.0 // indirect
|
|
github.com/kennygrant/sanitize v1.2.4 // indirect
|
|
github.com/saintfish/chardet v0.0.0-20230101081208-5e3ef4b5456d // indirect
|
|
github.com/temoto/robotstxt v1.1.2 // indirect
|
|
gitlab.com/golang-commonmark/html v0.0.0-20191124015941-a22733972181 // indirect
|
|
gitlab.com/golang-commonmark/linkify v0.0.0-20191026162114-a0c2df6c8f82 // indirect
|
|
gitlab.com/golang-commonmark/mdurl v0.0.0-20191124015652-932350d1cb84 // indirect
|
|
gitlab.com/golang-commonmark/puny v0.0.0-20191124015043-9f83538fa04f // indirect
|
|
)
|
|
|
|
// Testing infrastructure - indirect
|
|
require (
|
|
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
|
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
|
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
|
|
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
|
|
github.com/containerd/errdefs v1.0.0 // indirect
|
|
github.com/containerd/errdefs/pkg v0.3.0 // indirect
|
|
github.com/containerd/log v0.1.0 // indirect
|
|
github.com/containerd/platforms v1.0.0-rc.1 // indirect
|
|
github.com/cpuguy83/dockercfg v0.3.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/distribution/reference v0.6.0 // indirect
|
|
github.com/docker/docker v28.2.2+incompatible // indirect
|
|
github.com/docker/go-connections v0.5.0 // indirect
|
|
github.com/docker/go-units v0.5.0 // indirect
|
|
github.com/getsentry/sentry-go v0.30.0 // indirect
|
|
github.com/mdelapenya/tlscert v0.2.0 // indirect
|
|
github.com/moby/docker-image-spec v1.3.1 // indirect
|
|
github.com/moby/go-archive v0.1.0 // indirect
|
|
github.com/moby/patternmatcher v0.6.0 // indirect
|
|
github.com/moby/sys/sequential v0.6.0 // indirect
|
|
github.com/moby/sys/user v0.4.0 // indirect
|
|
github.com/moby/sys/userns v0.1.0 // indirect
|
|
github.com/moby/term v0.5.2 // indirect
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
)
|
|
|
|
// Utilities and common libraries - indirect
|
|
require (
|
|
dario.cat/mergo v1.0.2 // indirect
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
github.com/Masterminds/semver/v3 v3.2.0 // indirect
|
|
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
|
|
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
|
github.com/aymerick/douceur v0.2.0 // indirect
|
|
github.com/bits-and-blooms/bitset v1.22.0 // indirect
|
|
github.com/chewxy/math32 v1.11.0 // indirect
|
|
github.com/cockroachdb/errors v1.9.1 // indirect
|
|
github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f // indirect
|
|
github.com/cockroachdb/redact v1.1.3 // indirect
|
|
github.com/dlclark/regexp2 v1.11.4 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/ebitengine/purego v0.8.4 // indirect
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/go-openapi/analysis v0.23.0 // indirect
|
|
github.com/go-openapi/errors v0.22.0 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
github.com/go-openapi/loads v0.22.0 // indirect
|
|
github.com/go-openapi/runtime v0.24.2 // indirect
|
|
github.com/go-openapi/spec v0.21.0 // indirect
|
|
github.com/go-openapi/swag v0.23.0 // indirect
|
|
github.com/go-openapi/validate v0.24.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/golang/snappy v1.0.0 // indirect
|
|
github.com/google/flatbuffers v24.3.25+incompatible // indirect
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
|
github.com/google/renameio v1.0.1 // indirect
|
|
github.com/goph/emperror v0.17.2 // indirect
|
|
github.com/gorilla/websocket v1.5.3 // indirect
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
|
|
github.com/huandu/xstrings v1.3.3 // indirect
|
|
github.com/imdario/mergo v0.3.13 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/compress v1.18.3 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/lufia/plan9stats v0.0.0-20250317134145-8bc96cf8fc35 // indirect
|
|
github.com/magiconair/properties v1.8.10 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mitchellh/copystructure v1.0.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/nlnwa/whatwg-url v0.6.1 // indirect
|
|
github.com/oapi-codegen/runtime v1.1.1 // indirect
|
|
github.com/oklog/ulid v1.3.1 // indirect
|
|
github.com/opentracing/opentracing-go v1.2.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
|
|
github.com/richardlehane/msoleps v1.0.1 // indirect
|
|
github.com/rogpeppe/go-internal v1.14.1 // indirect
|
|
github.com/rs/zerolog v1.31.0 // indirect
|
|
github.com/shirou/gopsutil/v4 v4.25.5 // indirect
|
|
github.com/shopspring/decimal v1.2.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
github.com/spf13/cast v1.3.1 // indirect
|
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
github.com/tidwall/gjson v1.17.1 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.15 // indirect
|
|
github.com/tklauser/numcpus v0.10.0 // indirect
|
|
github.com/viterin/partial v1.1.0 // indirect
|
|
github.com/viterin/vek v0.4.2 // indirect
|
|
github.com/yargevad/filepathx v1.0.0 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
golang.org/x/crypto v0.43.0 // indirect
|
|
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect
|
|
golang.org/x/net v0.46.0 // indirect
|
|
golang.org/x/sys v0.37.0 // indirect
|
|
golang.org/x/text v0.30.0 // indirect
|
|
golang.org/x/time v0.12.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|