-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from arduino/fix_windows_enumerator
Update go-serial to fix Windows crash
- Loading branch information
Showing
7 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
--- | ||
name: golang.org/x/sys/internal/unsafeheader | ||
version: v0.0.0-20210823070655-63515b42dcdf | ||
version: v0.0.0-20220829200755-d48e67d00261 | ||
type: go | ||
summary: Package unsafeheader contains header declarations for the Go runtime's slice | ||
and string implementations. | ||
homepage: https://pkg.go.dev/golang.org/x/sys/internal/unsafeheader | ||
license: bsd-3-clause | ||
licenses: | ||
- sources: [email protected]20210823070655-63515b42dcdf/LICENSE | ||
- sources: [email protected]20220829200755-d48e67d00261/LICENSE | ||
text: | | ||
Copyright (c) 2009 The Go Authors. All rights reserved. | ||
|
@@ -36,7 +36,7 @@ licenses: | |
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
- sources: [email protected]20210823070655-63515b42dcdf/PATENTS | ||
- sources: [email protected]20220829200755-d48e67d00261/PATENTS | ||
text: | | ||
Additional IP Rights Grant (Patents) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
--- | ||
name: golang.org/x/sys/unix | ||
version: v0.0.0-20210823070655-63515b42dcdf | ||
version: v0.0.0-20220829200755-d48e67d00261 | ||
type: go | ||
summary: Package unix contains an interface to the low-level operating system primitives. | ||
homepage: https://pkg.go.dev/golang.org/x/sys/unix | ||
license: bsd-3-clause | ||
licenses: | ||
- sources: [email protected]20210823070655-63515b42dcdf/LICENSE | ||
- sources: [email protected]20220829200755-d48e67d00261/LICENSE | ||
text: | | ||
Copyright (c) 2009 The Go Authors. All rights reserved. | ||
|
@@ -35,7 +35,7 @@ licenses: | |
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
- sources: [email protected]20210823070655-63515b42dcdf/PATENTS | ||
- sources: [email protected]20220829200755-d48e67d00261/PATENTS | ||
text: | | ||
Additional IP Rights Grant (Patents) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
module github.com/arduino/serial-discovery | ||
|
||
replace go.bug.st/serial => github.com/cmaglie/go-serial v0.0.0-20221214153202-f7509ff50314 | ||
|
||
require ( | ||
github.com/arduino/go-properties-orderedmap v1.6.0 | ||
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.0.2 | ||
github.com/s-urbaniak/uevent v1.0.1 | ||
go.bug.st/serial v1.3.5 | ||
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf | ||
go.bug.st/serial v1.5.0 | ||
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 | ||
) | ||
|
||
go 1.16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters