mirror of
https://github.com/libp2p/go-libp2p.git
synced 2025-10-05 08:07:18 +08:00

* bump go.mod to Go 1.19 and run go fix * stop using the deprecated io/ioutil package * bump go.mod to Go 1.19 and run go fix * bump go.mod to Go 1.19 and run go fix * bump go.mod to Go 1.19 and run go fix * stop using the deprecated io/ioutil package * bump go.mod to Go 1.19 and run go fix * stop using the deprecated io/ioutil package * update .github/workflows/go-test.yml * update .github/workflows/go-check.yml * update .github/workflows/release-check.yml * various fixes * stop using deprecated math/rand.Read --------- Co-authored-by: web3-bot <web3-bot@users.noreply.github.com> Co-authored-by: Marten Seemann <martenseemann@gmail.com>
10 lines
169 B
Go
10 lines
169 B
Go
//go:build tools
|
|
|
|
package libp2p
|
|
|
|
import (
|
|
_ "github.com/golang/mock/mockgen"
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
|
)
|