-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
56 lines (53 loc) · 2.03 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
module github.com/jippi/scm-engine
go 1.22.3
require (
github.com/99designs/gqlgen v0.17.46
github.com/charmbracelet/lipgloss v0.10.0
github.com/davecgh/go-spew v1.1.1
github.com/expr-lang/expr v1.16.7
github.com/fatih/structtag v1.2.0
github.com/golang-cz/devslog v0.0.8
github.com/guregu/null/v5 v5.0.0
github.com/hasura/go-graphql-client v0.12.1
github.com/iancoleman/strcase v0.3.0
github.com/lmittmann/tint v1.0.4
github.com/muesli/termenv v0.15.2
github.com/samber/slog-multi v1.0.2
github.com/teacat/noire v1.1.0
github.com/urfave/cli/v2 v2.27.2
github.com/vektah/gqlparser/v2 v2.5.11
github.com/veqryn/slog-context v0.7.0
github.com/veqryn/slog-dedup v0.5.0
github.com/xanzy/go-gitlab v0.104.1
github.com/xhit/go-str2duration/v2 v2.1.0
golang.org/x/oauth2 v0.20.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/agnivade/levenshtein v1.1.1 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/muesli/reflow v0.3.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/samber/lo v1.38.1 // indirect
github.com/sosodev/duration v1.3.0 // indirect
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.15.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.20.0 // indirect
modernc.org/b/v2 v2.1.0 // indirect
nhooyr.io/websocket v1.8.11 // indirect
)