-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathgo.mod
33 lines (30 loc) · 1.06 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
module github.com/redhatinsights/yggdrasil
go 1.18
require (
git.sr.ht/~spc/go-log v0.1.1
github.com/adrg/xdg v0.5.0
github.com/coreos/go-systemd/v22 v22.5.0
github.com/eclipse/paho.mqtt.golang v1.5.0
github.com/godbus/dbus/v5 v5.1.0
github.com/golang-migrate/migrate/v4 v4.17.1
github.com/google/go-cmp v0.6.0
github.com/google/uuid v1.6.0
github.com/mattn/go-sqlite3 v1.14.23
github.com/pelletier/go-toml v1.9.5
github.com/rjeczalik/notify v0.9.3
github.com/urfave/cli/v2 v2.27.4
)
require (
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
go.uber.org/atomic v1.7.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.22.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)