-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathgo.mod
More file actions
38 lines (33 loc) · 1.07 KB
/
go.mod
File metadata and controls
38 lines (33 loc) · 1.07 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
module github.com/GoMudEngine/GoMud
go 1.24.0
require (
github.com/dop251/goja v0.0.0-20231027120936-b396bb4c349d
github.com/gorilla/websocket v1.5.3
github.com/natefinch/lumberjack v2.0.0+incompatible
github.com/stretchr/testify v1.11.1
golang.org/x/text v0.34.0
)
require (
github.com/GoMudEngine/ansitags v1.3.0
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dlclark/regexp2 v1.7.0 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/mattn/go-runewidth v0.0.19
github.com/nicksnyder/go-i18n/v2 v2.6.0
github.com/pkg/errors v0.9.1
golang.org/x/crypto v0.45.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/clipperhouse/uax29/v2 v2.2.0 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/term v0.37.0 // indirect
)