-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
41 lines (36 loc) · 1.5 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
module github.com/develatio/nebulant-bridge
go 1.21
replace github.com/develatio/nebulant-bridge => ./
require (
github.com/develatio/nebulant-cli v0.5.1-beta-hotfix1
github.com/gorilla/websocket v1.5.3
)
require (
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
github.com/UserExistsError/conpty v0.1.4 // indirect
github.com/aws/aws-sdk-go v1.55.5 // indirect
github.com/chzyer/readline v1.5.1 // indirect
github.com/creack/pty v1.1.21 // indirect
github.com/gabriel-vasile/mimetype v1.4.5 // indirect
github.com/go-playground/validator/v10 v10.22.0 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/manifoldco/promptui v0.9.0 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/stretchr/testify v1.9.0 // indirect
golang.org/x/crypto v0.25.0 // indirect
golang.org/x/term v0.22.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
require (
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/schollz/progressbar/v3 v3.14.5 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
)