-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
40 lines (36 loc) · 1.37 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/calaos/calaos-container
go 1.20
require (
github.com/gofiber/fiber/v2 v2.51.0
github.com/jawher/mow.cli v1.2.0
github.com/knadh/koanf v1.5.0
)
require (
github.com/andybalholm/brotli v1.0.6 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.51.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
modernc.org/libc v1.34.11 // indirect
)
require (
github.com/fatih/color v1.16.0
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/godbus/dbus/v5 v5.1.0
github.com/google/uuid v1.4.0 // indirect
github.com/jedib0t/go-pretty/v6 v6.4.9
github.com/klauspost/compress v1.17.3 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/raoulh/go-progress v0.0.0-20231127103236-e06cc96d11d9
github.com/rivo/uniseg v0.4.4 // indirect
github.com/sirupsen/logrus v1.9.3
golang.org/x/sync v0.5.0
golang.org/x/sys v0.14.1-0.20231108175955-e4099bfacb8c // indirect
)