Skip to content

Commit ff9f349

Browse files
authored
Merge pull request #19 from arduino/scerza/update-mdns-lib
Remove forked dependencies in favor of original library
2 parents 583ef3d + 67fa35e commit ff9f349

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.licenses/mdns-discovery/go/github.com/arduino/mdns.dep.yml renamed to .licenses/mdns-discovery/go/github.com/hashicorp/mdns.dep.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
name: github.com/arduino/mdns
3-
version: v1.0.5-0.20211124112247-3bf2ec2117c5
2+
name: github.com/hashicorp/mdns
3+
version: v1.0.5
44
type: go
55
summary:
6-
homepage: https://pkg.go.dev/github.com/arduino/mdns
6+
homepage: https://pkg.go.dev/github.com/hashicorp/mdns
77
license: mit
88
licenses:
99
- sources: LICENSE

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ go 1.16
44

55
require (
66
github.com/arduino/go-properties-orderedmap v1.6.0
7-
github.com/arduino/mdns v1.0.5-0.20211124112247-3bf2ec2117c5
87
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.0.2
8+
github.com/hashicorp/mdns v1.0.5
99
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ github.com/arduino/go-properties-orderedmap v1.6.0 h1:gp2JoWRETtqwsZ+UHu/PBuYWYH
5353
github.com/arduino/go-properties-orderedmap v1.6.0/go.mod h1:DKjD2VXY/NZmlingh4lSFMEYCVubfeArCsGPGDwb2yk=
5454
github.com/arduino/go-timeutils v0.0.0-20171220113728-d1dd9e313b1b/go.mod h1:uwGy5PpN4lqW97FiLnbcx+xx8jly5YuPMJWfVwwjJiQ=
5555
github.com/arduino/go-win32-utils v0.0.0-20180330194947-ed041402e83b/go.mod h1:iIPnclBMYm1g32Q5kXoqng4jLhMStReIP7ZxaoUC2y8=
56-
github.com/arduino/mdns v1.0.5-0.20211124112247-3bf2ec2117c5 h1:fbhij4dK/w6KocjReBg48O6UuyRSLo31Xl1mYq1JyGc=
57-
github.com/arduino/mdns v1.0.5-0.20211124112247-3bf2ec2117c5/go.mod h1:mo3tCC9kw/TYfyrZ1TcsGozoy6CFe+GXPvyoEfZDLIY=
5856
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.0.2 h1:r9O2SF838OeYiUoI+/Ruo8GFlnHWA61BhzFphduA6Z0=
5957
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.0.2/go.mod h1:5YzA/5e6PfTkmlNZ8bbqftqxF0EEVOCRVXuQ0341WOY=
6058
github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=
@@ -187,6 +185,8 @@ github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ
187185
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
188186
github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64=
189187
github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ=
188+
github.com/hashicorp/mdns v1.0.5 h1:1M5hW1cunYeoXOqHwEb/GBDDHAFo0Yqb/uz/beC6LbE=
189+
github.com/hashicorp/mdns v1.0.5/go.mod h1:mtBihi+LeNXGtG8L9dX59gAEa12BDtBQSp4v/YAJqrc=
190190
github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I=
191191
github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc=
192192
github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import (
2828
"time"
2929

3030
properties "github.com/arduino/go-properties-orderedmap"
31-
"github.com/arduino/mdns"
3231
discovery "github.com/arduino/pluggable-discovery-protocol-handler/v2"
32+
"github.com/hashicorp/mdns"
3333
)
3434

3535
func main() {

0 commit comments

Comments
 (0)