Skip to content
Snippets Groups Projects
  • Levente Pap's avatar
    6026d479
    Use TLV protocol for Analysis Plugin (#424) · 6026d479
    Levente Pap authored
    * Refactor heartbeat packet into message for TLV
    
    * Refactor Analysis-Server for TLV protocol
    
    * Adjust Heartbeat packet tests for TLV
    
    * Remove obsolete ping packet
    
    * Add comments
    
    * Add message registry for analysis packet types
    
    * Update hive.go
    
    * Refactor analysis message registry initialization
    
    * go mod tidy for integration tests
    
    * format files with gofmt
    
    * Linter warning fix
    
    * Small fix
    Use TLV protocol for Analysis Plugin (#424)
    Levente Pap authored
    * Refactor heartbeat packet into message for TLV
    
    * Refactor Analysis-Server for TLV protocol
    
    * Adjust Heartbeat packet tests for TLV
    
    * Remove obsolete ping packet
    
    * Add comments
    
    * Add message registry for analysis packet types
    
    * Update hive.go
    
    * Refactor analysis message registry initialization
    
    * go mod tidy for integration tests
    
    * format files with gofmt
    
    * Linter warning fix
    
    * Small fix
This project manages its dependencies using Go Modules. Learn more
go.mod 615 B
module github.com/iotaledger/goshimmer/tools/integration-tests/tester

go 1.14

require (
	github.com/Microsoft/go-winio v0.4.14 // indirect
	github.com/docker/distribution v2.7.1+incompatible // indirect
	github.com/docker/docker v1.13.1
	github.com/docker/go-connections v0.4.0
	github.com/docker/go-units v0.4.0 // indirect
	github.com/drand/drand v0.8.1
	github.com/iotaledger/goshimmer v0.1.3
	github.com/iotaledger/hive.go v0.0.0-20200513180357-f0ac8c45b754
	github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
	github.com/stretchr/testify v1.5.1
)

replace github.com/iotaledger/goshimmer => ../../..