-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
26 lines (23 loc) · 841 Bytes
/
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
module monitor
go 1.18
require (
github.com/alexflint/go-arg v1.4.3
github.com/konsorten/go-windows-terminal-sequences v1.0.3
github.com/mattn/go-colorable v0.1.12
github.com/orandin/lumberjackrus v1.0.1
github.com/sirupsen/logrus v1.8.1
github.com/tidwall/gjson v1.14.1
github.com/tidwall/sjson v1.2.4
golang.org/x/crypto v0.0.0-20220516162934-403b01795ae8
)
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/alexflint/go-scalar v1.1.0 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a // indirect
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)