-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (20 loc) · 511 Bytes
/
go.mod
File metadata and controls
25 lines (20 loc) · 511 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
module gon.cl/algorithms
go 1.22.0
toolchain go1.23.3
require (
github.com/stretchr/testify v1.10.0
go.uber.org/zap v1.27.0
golang.org/x/exp v0.0.0-20241204233417-43b7b7cde48d
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
// Excluded due Snyk vulnerability reports
exclude (
golang.org/x/crypto v0.30.0
golang.org/x/net v0.32.0
golang.org/x/text v0.21.0
)