
Due to the way SSDP works, Flamenco Manager needs to know its own URL, where the Workers can reach it. These URLs are now found, and since there can be multiple (like IPv6 + IPv4) they are all sent in a SSDP notification as ;-separated strings.
67 lines
2.7 KiB
Modula-2
67 lines
2.7 KiB
Modula-2
module git.blender.org/flamenco
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/benbjohnson/clock v1.3.0
|
|
github.com/deepmap/oapi-codegen v1.9.0
|
|
github.com/dop251/goja v0.0.0-20211217115348-3f9136fa235d
|
|
github.com/dop251/goja_nodejs v0.0.0-20210225215109-d91c329300e7
|
|
github.com/getkin/kin-openapi v0.88.0
|
|
github.com/glebarez/sqlite v1.3.5
|
|
github.com/golang/mock v1.6.0
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
|
github.com/google/uuid v1.3.0
|
|
github.com/graarh/golang-socketio v0.0.0-20170510162725-2c44953b9b5f
|
|
github.com/labstack/echo/v4 v4.6.1
|
|
github.com/mattn/go-colorable v0.1.12
|
|
github.com/rs/zerolog v1.26.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/ziflex/lecho/v3 v3.1.0
|
|
golang.org/x/crypto v0.0.0-20211215165025-cf75a172585e
|
|
golang.org/x/net v0.0.0-20211013171255-e13a2654a71e
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
gorm.io/gorm v1.23.2
|
|
modernc.org/sqlite v1.14.6
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91 // indirect
|
|
github.com/fromkeith/gossdp v0.0.0-20180102154144-1b2c43f6886e // indirect
|
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
github.com/glebarez/go-sqlite v1.14.7 // indirect
|
|
github.com/go-openapi/jsonpointer v0.19.5 // indirect
|
|
github.com/go-openapi/swag v0.19.5 // indirect
|
|
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
|
github.com/gorilla/mux v1.8.0 // indirect
|
|
github.com/gorilla/websocket v1.4.2 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.4 // indirect
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
|
|
github.com/labstack/gommon v0.3.1 // indirect
|
|
github.com/mailru/easyjson v0.7.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.1 // indirect
|
|
golang.org/x/mod v0.4.2 // indirect
|
|
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
|
|
golang.org/x/tools v0.1.7 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
lukechampine.com/uint128 v1.1.1 // indirect
|
|
modernc.org/cc/v3 v3.35.22 // indirect
|
|
modernc.org/ccgo/v3 v3.15.13 // indirect
|
|
modernc.org/libc v1.14.5 // indirect
|
|
modernc.org/mathutil v1.4.1 // indirect
|
|
modernc.org/memory v1.0.5 // indirect
|
|
modernc.org/opt v0.1.1 // indirect
|
|
modernc.org/strutil v1.1.1 // indirect
|
|
modernc.org/token v1.0.0 // indirect
|
|
)
|