-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
28 lines (25 loc) · 926 Bytes
/
go.mod
File metadata and controls
28 lines (25 loc) · 926 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
module github.com/cricklet/chessgo
go 1.20
require (
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
github.com/davecgh/go-spew v1.1.1
github.com/dustin/go-humanize v1.0.1
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/kortemy/elo-go v0.0.0-20190919090953-f9d3a99fd7b7
github.com/mxschmitt/golang-combinations v1.2.0
github.com/pkg/profile v1.7.0
github.com/stretchr/testify v1.8.1
github.com/ztrue/tracerr v0.3.0
golang.org/x/term v0.5.0
)
require (
github.com/felixge/fgprof v0.9.3 // indirect
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.5.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)