-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
go.mod
35 lines (32 loc) · 1.11 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
module github.com/govim/govim
go 1.18
require (
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
github.com/creack/pty v1.1.10
github.com/fsnotify/fsevents v0.1.1
github.com/fsnotify/fsnotify v1.4.7
github.com/kr/pretty v0.3.1
github.com/myitcv/vbash v0.0.4
github.com/rogpeppe/go-internal v1.12.0
golang.org/x/exp/typeparams v0.0.0-20221212164502-fae10dda9338
golang.org/x/mod v0.18.0
golang.org/x/telemetry v0.0.0-20240607193123-221703e18637
golang.org/x/tools v0.22.1-0.20240625180128-850c7c3070cd
golang.org/x/tools/gopls v0.0.0-20240625180128-850c7c3070cd
gopkg.in/retry.v1 v1.0.3
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637
honnef.co/go/tools v0.4.7
mvdan.cc/gofumpt v0.6.0
)
require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/kr/text v0.2.0 // indirect
golang.org/x/net v0.26.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/vuln v1.0.4 // indirect
mvdan.cc/sh/v3 v3.0.0-alpha1 // indirect
mvdan.cc/xurls/v2 v2.5.0 // indirect
)