-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathgo.mod
More file actions
64 lines (61 loc) · 2.61 KB
/
go.mod
File metadata and controls
64 lines (61 loc) · 2.61 KB
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
module github.com/project-chip/alchemy
go 1.25
require (
github.com/Masterminds/semver v1.5.0
github.com/alecthomas/kong v1.10.0
github.com/beevik/etree v1.4.1
github.com/bmatcuk/doublestar/v4 v4.6.1
github.com/dave/dst v0.27.3
github.com/dolthub/go-mysql-server v0.19.0
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/iancoleman/strcase v0.3.0
github.com/lithammer/dedent v1.1.0
github.com/lmittmann/tint v1.0.5
github.com/mailgun/raymond/v2 v2.0.48
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/tidwall/pretty v1.2.1
github.com/walle/targz v0.0.0-20140417120357-57fe4206da5a
golang.org/x/sync v0.17.0
znkr.io/diff v0.0.0-20250929202033-c511d917d900
)
require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/dolthub/flatbuffers/v23 v23.3.3-dh.2 // indirect
github.com/dolthub/go-icu-regex v0.0.0-20241215010122-db690dd53c90 // indirect
github.com/dolthub/jsonpath v0.0.2-0.20240227200619-19675ab05c71 // indirect
github.com/dolthub/vitess v0.0.0-20241211024425-b00987f7ba54 // indirect
github.com/go-kit/kit v0.10.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/lestrrat-go/strftime v1.0.4 // 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.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/tetratelabs/wazero v1.8.2 // indirect
go.opentelemetry.io/otel v1.31.0 // indirect
go.opentelemetry.io/otel/trace v1.31.0 // indirect
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
golang.org/x/mod v0.28.0 // indirect
golang.org/x/sys v0.36.0 // indirect
golang.org/x/telemetry v0.0.0-20250908211612-aef8a434d053 // indirect
golang.org/x/term v0.22.0 // indirect
golang.org/x/text v0.20.0 // indirect
golang.org/x/tools v0.37.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/grpc v1.53.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/src-d/go-errors.v1 v1.0.0 // indirect
)