-
- Downloads

fixes parser for entry nodes and logs

Showing
- .gitignore 3 additions, 0 deletions.gitignore
- go.mod 13 additions, 12 deletionsgo.mod
- go.sum 41 additions, 45 deletionsgo.sum
- plugins/autopeering/autopeering.go 37 additions, 38 deletionsplugins/autopeering/autopeering.go
- plugins/autopeering/entrynodes.go 31 additions, 0 deletionsplugins/autopeering/entrynodes.go
- plugins/autopeering/parameters/parameters.go 2 additions, 2 deletionsplugins/autopeering/parameters/parameters.go
- plugins/autopeering/plugin.go 2 additions, 4 deletionsplugins/autopeering/plugin.go
... | ... | @@ -5,23 +5,24 @@ go 1.13 |
require ( | ||
github.com/dgraph-io/badger v1.6.0 | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible | ||
github.com/dgryski/go-farm v0.0.0-20191112170834-c2139c5d712b // indirect | ||
github.com/gdamore/tcell v1.2.0 | ||
github.com/go-zeromq/zmq4 v0.5.0 | ||
github.com/gdamore/tcell v1.3.0 | ||
github.com/go-zeromq/zmq4 v0.6.2 | ||
github.com/google/open-location-code/go v0.0.0-20190903173953-119bc96a3a51 | ||
github.com/gorilla/websocket v1.4.1 | ||
github.com/iotaledger/autopeering-sim v0.0.0-20191120103907-203d7715f04c | ||
github.com/iotaledger/autopeering-sim v0.0.0-20191121125328-c607091f6bc8 | ||
github.com/iotaledger/hive.go v0.0.0-20191118130432-89eebe8fe8eb | ||
github.com/iotaledger/iota.go v1.0.0-beta.9 | ||
github.com/iotaledger/iota.go v1.0.0-beta.10 | ||
github.com/labstack/echo v3.3.10+incompatible | ||
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect | ||
github.com/magiconair/properties v1.8.1 | ||
github.com/mattn/go-colorable v0.1.4 // indirect | ||
github.com/mattn/go-isatty v0.0.10 // indirect | ||
github.com/mattn/go-runewidth v0.0.6 // indirect | ||
github.com/pkg/errors v0.8.1 | ||
github.com/rivo/tview v0.0.0-20190829161255-f8bc69b90341 | ||
go.uber.org/atomic v1.5.1 // indirect | ||
go.uber.org/multierr v1.4.0 // indirect | ||
go.uber.org/zap v1.13.0 // indirect | ||
golang.org/x/crypto v0.0.0-20190829043050-9756ffdc2472 | ||
github.com/rivo/tview v0.0.0-20191018125527-685bf6da76c2 | ||
github.com/valyala/fasttemplate v1.1.0 // indirect | ||
golang.org/x/crypto v0.0.0-20191119213627-4f8c1d86b1ba | ||
golang.org/x/net v0.0.0-20191119073136-fc4aabc6c914 | ||
golang.org/x/sys v0.0.0-20191119195528-f068ffe820e4 // indirect | ||
golang.org/x/tools v0.0.0-20191120001058-ad01d5993d97 // indirect | ||
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect | ||
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898 // indirect | ||
) |
This diff is collapsed.
plugins/autopeering/entrynodes.go
0 → 100644
Please register or sign in to comment