-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
55 lines (49 loc) · 1.78 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module github.com/hansmi/baamhackl
go 1.21.0
toolchain go1.22.1
// go-yaml 1.10 fails to build on 32 bit platforms: "cannot use math.MaxInt64
// […] as int value in assignment".
//
// https://github.com/goccy/go-yaml/pull/350
exclude github.com/goccy/go-yaml v1.10.0
require (
github.com/cenkalti/backoff/v4 v4.3.0
github.com/go-playground/validator/v10 v10.22.1
github.com/goccy/go-yaml v1.13.2
github.com/gofrs/flock v0.12.1
github.com/google/go-cmp v0.6.0
github.com/google/subcommands v1.2.0
github.com/jonboulle/clockwork v0.4.0
github.com/mitchellh/go-wordwrap v1.0.1
github.com/prometheus/client_golang v1.20.5
github.com/rivo/uniseg v0.4.7
github.com/spf13/afero v1.11.0
go.uber.org/multierr v1.11.0
go.uber.org/zap v1.27.0
golang.org/x/sync v0.8.0
golang.org/x/sys v0.26.0
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.55.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/text v0.19.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
)
require (
github.com/fatih/color v1.18.0 // indirect
github.com/google/renameio/v2 v2.0.0
github.com/mattn/go-colorable v0.1.13 // indirect
golang.org/x/crypto v0.28.0 // indirect
)