-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (24 loc) · 891 Bytes
/
go.mod
File metadata and controls
27 lines (24 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module github.com/macadmins/osquery-extension
go 1.24.0
require (
github.com/hashicorp/go-version v1.7.0
github.com/micromdm/plist v0.2.3-0.20260123201933-667adaf87d87
github.com/osquery/osquery-go v0.0.0-20250131154556-629f995b6947
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.11.1
golang.org/x/sync v0.17.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/apache/thrift v0.22.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
go.opentelemetry.io/otel v1.38.0 // indirect
go.opentelemetry.io/otel/metric v1.38.0 // indirect
go.opentelemetry.io/otel/trace v1.38.0 // indirect
golang.org/x/sys v0.36.0 // indirect
)