-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathgo.mod
More file actions
22 lines (19 loc) · 692 Bytes
/
go.mod
File metadata and controls
22 lines (19 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module github.com/astavonin/go-optimization-guide
go 1.24.0
require (
golang.org/x/exp v0.0.0-20251219203646-944ab1f22d93
golang.org/x/sync v0.19.0
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
github.com/quic-go/quic-go v0.52.0 // indirect
go.uber.org/mock v0.5.0 // indirect
golang.org/x/crypto v0.46.0 // indirect
golang.org/x/mod v0.31.0 // indirect
golang.org/x/net v0.48.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/tools v0.40.0 // indirect
)