-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathgo.mod
More file actions
31 lines (27 loc) · 919 Bytes
/
go.mod
File metadata and controls
31 lines (27 loc) · 919 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
28
29
30
31
module github.com/GoMudEngine/GoMud
go 1.24
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.10.0
golang.org/x/text v0.21.0
)
require (
github.com/GoMudEngine/ansitags v1.0.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
github.com/rivo/uniseg v0.2.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/mattn/go-runewidth v0.0.16
github.com/nicksnyder/go-i18n/v2 v2.5.1
github.com/pkg/errors v0.9.1
gopkg.in/yaml.v2 v2.4.0
)