-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
26 lines (23 loc) · 911 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
go 1.21
module github.com/echocat/caretakerd
require (
github.com/alecthomas/kingpin/v2 v2.4.0
github.com/eknkc/dateformat v0.0.0-20121024010912-ad630cb9b109
github.com/emicklei/go-restful/v3 v3.12.1
github.com/russross/blackfriday/v2 v2.1.0
github.com/tdewolff/minify/v2 v2.20.37
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
gopkg.in/jmcvetta/napping.v3 v3.2.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
gopkg.in/robfig/cron.v2 v2.0.0-20150107220207-be2e0b0deed5
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 // indirect
github.com/jmcvetta/randutil v0.0.0-20150817122601-2bb1b664bcff // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/tdewolff/parse/v2 v2.7.15 // indirect
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
)