mirror of
https://github.com/openziti/ziti.git
synced 2026-09-23 19:06:38 +00:00
d07618c9d5
- edge router sync is now modular and can have different strategies - plans to make this configurabe in the future with multiple strat - legacy strategy is called "instant" and is the only option - instant strat now supports control signaling and resync requests - edge routers now do not remove connections till after a full sync - added the ability for the controller to report the er sync status - added er syn status to GET /edge-routers list and detail - improved log output in sync logic
63 lines
2.3 KiB
Modula-2
63 lines
2.3 KiB
Modula-2
module github.com/openziti/edge
|
|
|
|
go 1.15
|
|
|
|
//replace github.com/openziti/foundation => ../foundation
|
|
|
|
//replace github.com/openziti/fabric => ../fabric
|
|
|
|
//replace github.com/openziti/sdk-golang => ../sdk-golang
|
|
|
|
//replace github.com/kataras/go-events => ../go-events
|
|
|
|
require (
|
|
github.com/AppsFlyer/go-sundheit v0.2.0
|
|
github.com/Jeffail/gabs v1.4.0
|
|
github.com/achanda/go-sysctl v0.0.0-20160222034550-6be7678c45d2
|
|
github.com/blang/semver v3.5.1+incompatible
|
|
github.com/coreos/go-iptables v0.5.0
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/dgryski/dgoogauth v0.0.0-20190221195224-5a805980a5f3
|
|
github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa
|
|
github.com/go-openapi/errors v0.19.9
|
|
github.com/go-openapi/loads v0.20.1
|
|
github.com/go-openapi/runtime v0.19.26
|
|
github.com/go-openapi/spec v0.20.2
|
|
github.com/go-openapi/strfmt v0.20.0
|
|
github.com/go-openapi/swag v0.19.13
|
|
github.com/go-openapi/validate v0.20.1
|
|
github.com/golang/protobuf v1.4.3
|
|
github.com/google/go-cmp v0.5.4
|
|
github.com/google/uuid v1.2.0
|
|
github.com/gorilla/handlers v1.5.1
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/kataras/go-events v0.0.3-0.20201007151548-c411dc70c0a6
|
|
github.com/lucsky/cuid v1.0.2
|
|
github.com/mdlayher/netlink v1.2.1
|
|
github.com/michaelquigley/pfxlog v0.3.6
|
|
github.com/miekg/dns v1.1.38
|
|
github.com/mitchellh/mapstructure v1.4.1
|
|
github.com/netfoundry/secretstream v0.1.2
|
|
github.com/openziti/fabric v0.16.3
|
|
github.com/openziti/foundation v0.15.12
|
|
github.com/openziti/sdk-golang v0.15.13
|
|
github.com/orcaman/concurrent-map v0.0.0-20210106121528-16402b402231
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0
|
|
github.com/sirupsen/logrus v1.7.0
|
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
|
github.com/spf13/cobra v1.1.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/teris-io/shortid v0.0.0-20171029131806-771a37caa5cf
|
|
github.com/xeipuuv/gojsonschema v1.2.0
|
|
go.etcd.io/bbolt v1.3.5-0.20200615073812-232d8fc87f50
|
|
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899
|
|
golang.org/x/net v0.0.0-20210119194325-5f4716e94777
|
|
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
|
|
golang.org/x/sys v0.0.0-20210110051926-789bb1bd4061
|
|
google.golang.org/protobuf v1.25.0 // indirect
|
|
gopkg.in/resty.v1 v1.12.0
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
|
|
)
|