-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathgo.mod
25 lines (22 loc) · 772 Bytes
/
go.mod
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
module github.com/platinummonkey/go-concurrency-limits
go 1.21
toolchain go1.22.9
require (
github.com/DataDog/datadog-go/v5 v5.6.0
github.com/golang/protobuf v1.5.4
github.com/rcrowley/go-metrics v0.0.0-20180503174638-e2704e165165
github.com/stretchr/testify v1.10.0
golang.org/x/net v0.34.0
golang.org/x/time v0.9.0
google.golang.org/grpc v1.69.4
)
require (
github.com/Microsoft/go-winio v0.5.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
google.golang.org/protobuf v1.35.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)