-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgo.mod
63 lines (58 loc) · 2.24 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module github.com/lunarway/shuttle
go 1.21
toolchain go1.22.4
require (
github.com/Masterminds/sprig/v3 v3.2.3
github.com/cli/safeexec v1.0.1
github.com/go-cmd/cmd v1.4.2
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
github.com/mitchellh/copystructure v1.1.1 // indirect
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.0
github.com/stretchr/testify v1.9.0
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
dagger.io/dagger v0.11.6
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/google/uuid v1.6.0
github.com/iancoleman/strcase v0.3.0
github.com/matishsiao/goInfo v0.0.0-20210923090445-da2e3fa8d45f
github.com/otiai10/copy v1.14.0
golang.org/x/mod v0.18.0
golang.org/x/sync v0.7.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/99designs/gqlgen v0.17.44 // indirect
github.com/Khan/genqlient v0.7.0 // indirect
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.2.0 // indirect
github.com/adrg/xdg v0.4.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/huandu/xstrings v1.3.3 // indirect
github.com/imdario/mergo v0.3.11 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/reflectwalk v1.0.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shopspring/decimal v1.2.0 // indirect
github.com/sosodev/duration v1.2.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/vektah/gqlparser/v2 v2.5.11 // indirect
go.opentelemetry.io/otel v1.26.0 // indirect
go.opentelemetry.io/otel/metric v1.26.0 // indirect
go.opentelemetry.io/otel/trace v1.26.0 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/term v0.8.0 // indirect
golang.org/x/text v0.14.0 // indirect
)