-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
32 lines (28 loc) · 1.15 KB
/
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
30
31
32
module github.com/arduino/uno-r4-wifi-fwuploader-plugin
go 1.20
// On windows the SetFeature func is not working. We're using our forked version that applies a quick hack
// to resolve that.
replace github.com/karalabe/hid => github.com/bcmi-labs/hid v0.0.0-20230703110227-931f677e7f17
require (
github.com/arduino/arduino-cli v0.0.0-20230706071323-df12786440c1
github.com/arduino/fwuploader-plugin-helper v1.0.0
github.com/arduino/go-paths-helper v1.9.1
github.com/karalabe/hid v0.0.0-00010101000000-000000000000
go.bug.st/relaxed-semver v0.11.0
go.bug.st/serial v1.5.0
golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1
)
require (
github.com/creack/goselect v0.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/leonelquinteros/gotext v1.5.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/cobra v1.7.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.8.4
golang.org/x/sys v0.10.0 // indirect
golang.org/x/text v0.11.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)