diff options
author | Daniel Milde <daniel@milde.cz> | 2022-09-09 23:26:30 +0200 |
---|---|---|
committer | Daniel Milde <daniel@milde.cz> | 2022-09-09 23:26:30 +0200 |
commit | 263f106e124abb3ba68f490a0e9bb4bc9bc69ff6 (patch) | |
tree | e332893d46ec001b721c603dc357864ab7c22895 /go.mod | |
parent | 61d57d75827a3944b3cb90ee0a589ea89529d6af (diff) |
refactor: use only yaml for reading/writing config file
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -5,14 +5,17 @@ go 1.16 require ( github.com/fatih/color v1.13.0 github.com/gdamore/tcell/v2 v2.5.1 + github.com/kr/pretty v0.3.0 // indirect github.com/maruel/natural v1.1.0 + github.com/mattn/go-colorable v0.1.12 // indirect github.com/mattn/go-isatty v0.0.14 github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 github.com/rivo/tview v0.0.0-20220709181631-73bf2902b59a github.com/sirupsen/logrus v1.8.1 github.com/spf13/cobra v1.5.0 - github.com/spf13/viper v1.13.0 github.com/stretchr/testify v1.8.0 golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect + gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect + gopkg.in/yaml.v3 v3.0.1 ) |