-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
42 lines (39 loc) · 1.67 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
33
34
35
36
37
38
39
40
41
42
module github.com/pubgo/ssdp-example
go 1.22.1
require (
github.com/beevik/etree v1.4.0
github.com/emiago/sipgo v0.21.0
github.com/ghettovoice/gosip v0.0.0-20240401112151-56d750b16008
github.com/grandcat/zeroconf v1.0.0
github.com/hashicorp/mdns v1.0.5
github.com/huin/goupnp v1.3.0
github.com/schollz/peerdiscovery v1.7.2
github.com/use-go/onvif v0.0.9
)
require (
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/discoviking/fsm v0.0.0-20150126104936-f4a273feecca // indirect
github.com/elgs/gostrgen v0.0.0-20161222160715-9d61ae07eeae // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.2.1 // indirect
github.com/gofrs/uuid v3.2.0+incompatible // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/icholy/digest v0.1.22 // indirect
github.com/juju/errors v0.0.0-20220331221717-b38fca44723b // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/miekg/dns v1.1.41 // indirect
github.com/rs/zerolog v1.28.0 // indirect
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b // indirect
github.com/sirupsen/logrus v1.4.2 // indirect
github.com/tevino/abool v0.0.0-20170917061928-9b9efcf221b5 // indirect
github.com/x-cray/logrus-prefixed-formatter v0.5.2 // indirect
golang.org/x/crypto v0.15.0 // indirect
golang.org/x/net v0.18.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/term v0.14.0 // indirect
)