-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
34 lines (30 loc) · 1.15 KB
/
go.mod
File metadata and controls
34 lines (30 loc) · 1.15 KB
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
32
33
34
module github.com/Dirk007/ancientPlotter
go 1.23.0
// Waiting for https://github.com/bugst/go-serial/pull/195 to be merged upstream
replace go.bug.st/serial => github.com/Dirk007/go-serial v0.0.0-20240907112601-b7483e31a79c
require (
github.com/Dirk007/clapper v0.1.3
github.com/fred1268/go-clap v1.2.1
github.com/google/uuid v1.6.0
github.com/labstack/echo v3.3.10+incompatible
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.9.0
go.bug.st/serial v1.6.2
golang.org/x/net v0.29.0
)
require (
github.com/creack/goselect v0.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/text v0.18.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)