-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
65 lines (62 loc) · 2.7 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
module github.com/project-chip/alchemy
go 1.23
require (
github.com/beevik/etree v1.4.1
github.com/bmatcuk/doublestar/v4 v4.6.1
github.com/dolthub/go-mysql-server v0.18.1
github.com/fatih/color v1.17.0
github.com/goccy/go-yaml v1.12.0
github.com/google/go-github/v60 v60.0.0
github.com/hexops/gotextdiff v1.0.3
github.com/iancoleman/orderedmap v0.3.0
github.com/iancoleman/strcase v0.3.0
github.com/lithammer/dedent v1.1.0
github.com/lmittmann/tint v1.0.5
github.com/puzpuzpuz/xsync/v3 v3.4.0
github.com/sanity-io/litter v1.5.5
github.com/schollz/progressbar/v3 v3.14.6
github.com/sethvargo/go-githubactions v1.3.0
github.com/shopspring/decimal v1.4.0
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.8.1
golang.org/x/sync v0.8.0
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/dolthub/flatbuffers/v23 v23.3.3-dh.2 // indirect
github.com/dolthub/go-icu-regex v0.0.0-20230524105445-af7e7991c97e // indirect
github.com/dolthub/jsonpath v0.0.2-0.20240227200619-19675ab05c71 // indirect
github.com/dolthub/vitess v0.0.0-20240404214255-c5a87fc7b325 // indirect
github.com/go-kit/kit v0.13.0 // indirect
github.com/go-sql-driver/mysql v1.8.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/lestrrat-go/strftime v1.1.0 // indirect
github.com/mailgun/raymond/v2 v2.0.48 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tetratelabs/wazero v1.8.0 // indirect
go.opentelemetry.io/otel v1.30.0 // indirect
go.opentelemetry.io/otel/trace v1.30.0 // indirect
golang.org/x/crypto v0.16.0 // indirect
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/term v0.24.0 // indirect
golang.org/x/text v0.18.0 // indirect
golang.org/x/tools v0.25.0 // indirect
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/grpc v1.53.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/src-d/go-errors.v1 v1.0.0 // indirect
)