-
Notifications
You must be signed in to change notification settings - Fork 37
/
go.mod
28 lines (24 loc) · 1017 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
module github.com/paralin/go-dota2
go 1.21
// note: protobuf is intentionally held at 1.3.x
replace github.com/golang/protobuf => github.com/aperturerobotics/go-protobuf-1.3.x v0.0.0-20200726220404-fa7f51c52df0 // aperture-1.3.x
require (
github.com/fatih/camelcase v1.0.0
github.com/golang/protobuf v1.5.4
github.com/paralin/go-steam v0.0.0-20231025185642-e7c8d97e052a
github.com/pkg/errors v0.9.1
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e
github.com/sirupsen/logrus v1.9.3
github.com/urfave/cli/v2 v2.27.5
google.golang.org/protobuf v1.36.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.22.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stretchr/testify v1.8.1 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
)