-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
59 lines (54 loc) · 2.21 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module github.com/concreteit/greenlight
go 1.19
replace github.com/tamerh/xml-stream-parser v0.0.0-00010101000000-000000000000 => ./fork/xml-stream-parser
require (
github.com/caarlos0/env/v6 v6.10.1
github.com/dop251/goja v0.0.0-20230707174833-636fdf960de1
github.com/dustinkirkland/golang-petname v0.0.0-20191129215211-8e5a1ed0cff0
github.com/h2non/filetype v1.1.3
github.com/jedib0t/go-pretty/v6 v6.3.8
github.com/labstack/echo/v4 v4.10.2
github.com/matoous/go-nanoid v1.5.0
github.com/matoous/go-nanoid/v2 v2.0.0
github.com/sirupsen/logrus v1.9.0
github.com/sourcegraph/conc v0.3.0
github.com/spf13/cobra v1.4.0
github.com/spf13/viper v1.10.1
github.com/tamerh/xml-stream-parser v0.0.0-00010101000000-000000000000
golang.org/x/crypto v0.8.0
)
require (
github.com/dlclark/regexp2 v1.10.0 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/mapstructure v1.4.3 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/term v0.7.0 // indirect
golang.org/x/text v0.11.0 // indirect
gopkg.in/ini.v1 v1.66.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
require (
github.com/google/pprof v0.0.0-20230705174524-200ffdc848b8 // indirect
github.com/tamerh/xpath v1.0.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/time v0.3.0 // indirect
)