-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
27 lines (24 loc) · 794 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
27
module github.com/titpetric/task-ui
go 1.19
require (
github.com/apex/log v1.9.0
github.com/creack/pty v1.1.18
github.com/go-chi/chi v1.5.4
github.com/go-chi/render v1.0.2
github.com/go-task/task/v3 v3.27.1
github.com/spf13/pflag v1.0.5
golang.org/x/net v0.11.0
)
require (
github.com/Masterminds/semver/v3 v3.2.1 // indirect
github.com/ajg/form v1.5.1 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/pkg/errors v0.8.1 // indirect
golang.org/x/exp v0.0.0-20230212135524-a684f29349b6 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.9.0 // indirect
golang.org/x/term v0.9.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
mvdan.cc/sh/v3 v3.7.0 // indirect
)