-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
40 lines (37 loc) · 1.49 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
module github.com/luisnquin/nao/v3
go 1.18
require (
github.com/Masterminds/semver/v3 v3.2.0
github.com/ProtonMail/go-appdir v1.1.0
github.com/agnivade/levenshtein v1.1.1
github.com/cip8/autoname v1.0.1
github.com/goccy/go-json v0.10.0
github.com/google/uuid v1.3.0
github.com/gookit/color v1.5.2
github.com/hugolgst/rich-go v0.0.0-20230917173849-4a4fb1d3c362
github.com/jedib0t/go-pretty v4.3.0+incompatible
github.com/rs/zerolog v1.28.0
github.com/samber/lo v1.39.0
github.com/spf13/cobra v1.6.1
github.com/xeonx/timeago v1.0.0-rc5
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
github.com/go-openapi/errors v0.20.2 // indirect
github.com/go-openapi/strfmt v0.21.3 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/mapstructure v1.3.3 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
go.mongodb.org/mongo-driver v1.10.0 // indirect
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
golang.org/x/sys v0.3.0 // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
)