-
Notifications
You must be signed in to change notification settings - Fork 18
/
go.mod
86 lines (82 loc) · 3.63 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
module github.com/tarantool/cartridge-cli
go 1.17
require (
github.com/FZambia/tarantool v0.2.1
github.com/adam-hanna/arrayOperations v0.2.6
github.com/alecthomas/participle/v2 v2.0.0-alpha4
github.com/apex/log v1.4.0
github.com/avast/retry-go v3.0.0+incompatible
github.com/briandowns/spinner v1.11.1
github.com/c-bata/go-prompt v0.2.5
github.com/dave/jennifer v1.4.1
github.com/docker/docker v26.0.0+incompatible
github.com/fatih/color v1.7.0
github.com/fatih/structs v1.1.0
github.com/hashicorp/go-version v1.2.0
github.com/hpcloud/tail v1.0.0
github.com/magefile/mage v1.11.0
github.com/mattn/go-isatty v0.0.12
github.com/mitchellh/mapstructure v1.4.1
github.com/otiai10/copy v1.7.1
github.com/pmezard/go-difflib v1.0.0
github.com/robfig/config v0.0.0-20141207224736-0f78529c8c7e
github.com/shirou/gopsutil v3.21.2+incompatible
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749
github.com/spf13/cobra v1.0.1-0.20200815144417-81e0311edd0b
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.4
github.com/vmihailenco/msgpack/v5 v5.1.0
github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/distribution/reference v0.6.0 // indirect
github.com/docker/distribution v2.8.2+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-ole/go-ole v1.2.5 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/term v0.0.0-20221105221325-4eb28fa6025c // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/tklauser/go-sysconf v0.3.4 // indirect
github.com/tklauser/numcpus v0.2.1 // indirect
github.com/vmihailenco/tagparser v0.1.2 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
go.opentelemetry.io/otel v1.24.0 // indirect
go.opentelemetry.io/otel/metric v1.24.0 // indirect
go.opentelemetry.io/otel/trace v1.24.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
golang.org/x/tools v0.1.5 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.0.3 // indirect
)
replace (
github.com/c-bata/go-prompt => github.com/tarantool/go-prompt v0.2.6-tarantool
github.com/docker/docker/internal/testutil => gotest.tools/v3 v3.0.0
golang.org/x/crypto => golang.org/x/crypto v0.0.0-20211202192323-5770296d904e
golang.org/x/text => golang.org/x/text v0.3.7
)