1diff --git a/go.mod b/go.mod
2index 2d396a4..c4fea4b 100644
3--- a/go.mod
4+++ b/go.mod
5@@ -1,14 +1,19 @@
6 module gitlab.com/WhyNotHugo/darkman
7
8-go 1.16
9+go 1.18
10
11 require (
12 github.com/adrg/xdg v0.3.3
13 github.com/godbus/dbus/v5 v5.0.4
14- github.com/kr/pretty v0.2.0 // indirect
15 github.com/rxwycdh/rxhash v0.0.0-20230131062142-10b7a38b400d
16 github.com/sj14/astral v0.1.2
17- github.com/spf13/cobra v1.7.0 // indirect
18- gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
19+ github.com/spf13/cobra v1.7.0
20 gopkg.in/yaml.v3 v3.0.1
21 )
22+
23+require (
24+ github.com/inconshreveable/mousetrap v1.1.0 // indirect
25+ github.com/kr/pretty v0.2.0 // indirect
26+ github.com/spf13/pflag v1.0.5 // indirect
27+ gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
28+)