-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
47 lines (43 loc) · 1.63 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
module github.com/haaag/gm
go 1.22
require github.com/mattn/go-sqlite3 v1.14.24
require (
github.com/PuerkitoBio/goquery v1.9.2
github.com/atotto/clipboard v0.1.4
github.com/c-bata/go-prompt v0.2.6
github.com/jmoiron/sqlx v1.4.0
github.com/junegunn/fzf v0.59.0
github.com/junegunn/go-shellwords v0.0.0-20250127100254-2aa3b3277741
github.com/muesli/go-app-paths v0.2.2
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.10.0
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
golang.org/x/image v0.18.0
golang.org/x/sync v0.10.0
golang.org/x/term v0.28.0
gopkg.in/ini.v1 v1.67.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/charlievieth/fastwalk v1.0.9 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/gdamore/tcell/v2 v2.8.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
)