-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgo.mod
29 lines (25 loc) · 827 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/brunoga/robomaster
go 1.22.3
require (
github.com/brunoga/groupfilterhandler v0.0.4
github.com/brunoga/timedsignalwaiter v1.0.0
github.com/google/uuid v1.6.0
github.com/lmittmann/tint v1.0.5
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.20
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
github.com/stretchr/testify v1.9.0
golang.org/x/sys v0.22.0
)
require (
github.com/kr/pretty v0.2.0 // indirect
github.com/kr/text v0.2.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
)
require (
github.com/brunoga/net v0.0.0-20220123224219-d568a820aba2
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)