-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
73 lines (67 loc) · 2.44 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
module cli
go 1.21.2
require (
github.com/Masterminds/semver/v3 v3.2.1
github.com/caarlos0/env/v10 v10.0.0
github.com/go-playground/validator/v10 v10.16.0
github.com/google/uuid v1.6.0
github.com/iancoleman/orderedmap v0.3.0
github.com/jedib0t/go-pretty/v6 v6.4.8
github.com/lmittmann/tint v1.0.2
github.com/schollz/progressbar/v3 v3.13.1
github.com/spf13/cobra v1.7.0
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa
golang.org/x/net v0.8.0
golang.org/x/sync v0.4.0
golang.org/x/term v0.13.0
gonum.org/v1/gonum v0.15.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/otiai10/copy v1.14.0
golang.org/x/mod v0.16.0
)
require (
github.com/beevik/etree v1.4.1
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb
github.com/hashicorp/go-version v1.7.0
github.com/klauspost/compress v1.17.11
github.com/whilp/git-urls v1.0.0
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
gopkg.in/ini.v1 v1.67.0
gopkg.in/src-d/go-git.v4 v4.13.1
modernc.org/sqlite v1.34.5
)
require (
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/ncruces/go-strftime v0.1.9 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/sergi/go-diff v1.0.0 // indirect
github.com/src-d/gcfg v1.4.0 // indirect
github.com/xanzy/ssh-agent v0.2.1 // indirect
gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
modernc.org/libc v1.55.3 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.8.0 // indirect
)
require (
github.com/BurntSushi/toml v1.3.2
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/leodido/go-urn v1.2.4 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.14.0 // indirect
)