-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (20 loc) · 685 Bytes
/
go.mod
File metadata and controls
23 lines (20 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/sinkingpoint/label-enforcer
go 1.21.6
require (
github.com/VictoriaMetrics/metricsql v0.73.0
github.com/alecthomas/kong v0.8.1
github.com/rs/zerolog v1.32.0
github.com/stretchr/testify v1.7.0
go.uber.org/multierr v1.11.0
)
require (
github.com/VictoriaMetrics/metrics v1.24.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/valyala/fastrand v1.1.0 // indirect
github.com/valyala/histogram v1.2.0 // indirect
golang.org/x/sys v0.12.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)