-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathgo.mod
More file actions
45 lines (41 loc) · 1.68 KB
/
go.mod
File metadata and controls
45 lines (41 loc) · 1.68 KB
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
module github.com/kost/tty2web
go 1.24.0
require (
github.com/NYTimes/gziphandler v1.1.1
github.com/creack/pty v1.1.24
github.com/fatih/structs v1.1.0
github.com/gorilla/websocket v1.5.3
github.com/hashicorp/yamux v0.1.2
github.com/kost/dnstun v0.0.0-20230511164951-6e7f5656a900
github.com/kost/go-ntlmssp v0.0.0-20190601005913-a22bdd33b2a4
github.com/kost/gosc v0.0.0-20230110210303-490723ad1528
github.com/kost/httpexecute v0.0.0-20211119174050-f41d120e9db6
github.com/kost/regeorgo v0.0.0-20211119151427-d6c70e76b00e
github.com/pkg/errors v0.9.1
github.com/urfave/cli/v2 v2.27.7
github.com/yudai/hcl v0.0.0-20151013225006-5fa2393b3552
golang.org/x/crypto v0.48.0
)
require (
github.com/Jeffail/tunny v0.1.4 // indirect
github.com/acomagu/bufpipe v1.0.4 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/kost/chashell v0.0.0-20230409212000-cf0fbd106275 // indirect
github.com/miekg/dns v1.1.72 // indirect
github.com/rs/xid v1.6.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
golang.org/x/mod v0.33.0 // indirect
golang.org/x/net v0.50.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.41.0 // indirect
golang.org/x/tools v0.42.0 // indirect
google.golang.org/protobuf v1.36.11 // indirect
)
replace (
github.com/creack/pty => github.com/photostorm/pty v1.1.19-0.20221026012344-0a71ca4f0f8c
github.com/creack/pty v1.1.18 => github.com/photostorm/pty v1.1.19-0.20221026012344-0a71ca4f0f8c
)