forked from jorgerojas26/lazysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
26 lines (23 loc) · 826 Bytes
/
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
module github.com/jorgerojas26/lazysql
go 1.20
require (
github.com/gdamore/tcell/v2 v2.7.0
github.com/go-sql-driver/mysql v1.7.1
github.com/google/uuid v1.5.0
github.com/pelletier/go-toml/v2 v2.1.1
github.com/rivo/tview v0.0.0-20240101144852-b3bd1aa5e9f2
github.com/xo/dburl v0.20.2
golang.design/x/clipboard v0.7.0
)
require (
github.com/gdamore/encoding v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/rivo/uniseg v0.4.3 // indirect
golang.org/x/exp v0.0.0-20190731235908-ec7cb31e5a56 // indirect
golang.org/x/image v0.6.0 // indirect
golang.org/x/mobile v0.0.0-20230301163155-e0f57694e12c // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
)