-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
35 lines (32 loc) · 1.1 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
module github.com/icinga/icinga-go-library
go 1.22
require (
github.com/caarlos0/env/v11 v11.2.2
github.com/creasty/defaults v1.8.0
github.com/go-sql-driver/mysql v1.8.1
github.com/goccy/go-yaml v1.13.0
github.com/google/uuid v1.6.0
github.com/jessevdk/go-flags v1.6.1
github.com/jmoiron/sqlx v1.4.0
github.com/lib/pq v1.10.9
github.com/pkg/errors v0.9.1
github.com/redis/go-redis/v9 v9.7.0
github.com/ssgreg/journald v1.0.0
github.com/stretchr/testify v1.10.0
go.uber.org/zap v1.27.0
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
golang.org/x/sync v0.10.0
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/fatih/color v1.18.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/sys v0.26.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)