-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgo.mod
More file actions
32 lines (28 loc) · 1 KB
/
go.mod
File metadata and controls
32 lines (28 loc) · 1 KB
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
28
29
30
31
32
module github.com/splunk/stef/go/pdata
go 1.25.0
require (
github.com/google/go-cmp v0.7.0
github.com/splunk/stef/go/otel v0.1.1
github.com/splunk/stef/go/pkg v0.1.1
github.com/stretchr/testify v1.11.1
go.opentelemetry.io/collector/pdata v1.53.0
modernc.org/b/v2 v2.1.10
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hashicorp/go-version v1.8.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.18.4 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.opentelemetry.io/collector/featuregate v1.53.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
replace (
github.com/splunk/stef/go/grpc => ../grpc
github.com/splunk/stef/go/otel => ../otel
github.com/splunk/stef/go/pkg => ../pkg
)