-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
45 lines (42 loc) · 1.76 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
module github.com/gdubicki/dynamotd
go 1.17
require (
github.com/Showmax/go-fqdn v0.0.0-20180501083314-6f60894d629f
github.com/Tonyfilla/go-humanize v0.0.0-20190109114339-dd7dcc22b778
github.com/fatih/color v1.13.0
github.com/mackerelio/go-osstat v0.2.1
github.com/minio/minio v0.0.0-20200926040242-511424a287e7
github.com/rivo/tview v0.0.0-20191129065140-82b05c9fb329
github.com/shirou/gopsutil v3.21.11+incompatible
github.com/spf13/viper v1.6.1
)
require (
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/gdamore/tcell v1.3.0 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.0.2 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/montanaflynn/stats v0.5.0 // indirect
github.com/ncw/directio v1.0.5 // indirect
github.com/pelletier/go-toml v1.2.0 // indirect
github.com/rivo/uniseg v0.1.0 // indirect
github.com/spf13/afero v1.1.2 // indirect
github.com/spf13/cast v1.3.0 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
github.com/spf13/pflag v1.0.3 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
github.com/tklauser/go-sysconf v0.3.10 // indirect
github.com/tklauser/numcpus v0.4.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 // indirect
golang.org/x/text v0.3.3 // indirect
gopkg.in/ini.v1 v1.57.0 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)