-
Notifications
You must be signed in to change notification settings - Fork 15
/
go.mod
29 lines (25 loc) · 907 Bytes
/
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
module github.com/volte6/gomud
go 1.23
require (
github.com/Volte6/ansitags v0.0.0-20240205002851-61e010ad9511
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.8.0
)
require (
github.com/BurntSushi/toml v1.4.0 // indirect
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
golang.org/x/text v0.3.8 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/pkg/errors v0.9.1
//golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
gopkg.in/yaml.v2 v2.4.0
)