-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (23 loc) · 667 Bytes
/
go.mod
File metadata and controls
27 lines (23 loc) · 667 Bytes
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
module purpcmd
go 1.18
require (
github.com/creack/pty v1.1.18
github.com/gorilla/websocket v1.5.0
)
require (
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
)
require (
github.com/c-bata/go-prompt v0.2.6
github.com/cheynewallace/tabby v1.1.1
github.com/google/uuid v1.6.0
github.com/mattn/go-sqlite3 v1.14.28
github.com/yuin/gopher-lua v1.1.1
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/term v0.16.0 // indirect
)