Hello, i have some issue when i try to install go-ds-s3.
I follow the readme to install correctly the go-ds-s3 but when i make build, i have these error
go version go1.18.5 darwin/arm64
bin/check_go_version 1.17
plugin/loader/preload.sh > plugin/loader/preload.go
go fmt plugin/loader/preload.go >/dev/null
go build "-trimpath" -ldflags="-X "github.com/ipfs/kubo".CurrentCommit=9c6094e65-dirty" -o "cmd/ipfs/ipfs" "github.com/ipfs/kubo/cmd/ipfs"
plugin/loader/preload.go:4:2: no required module provides package github.com/ipfs/go-ds-s3/plugin; to add it:
go get github.com/ipfs/go-ds-s3/plugin
make: *** [cmd/ipfs/ipfs] Error 1
Then i try the command go get github.com/ipfs/go-ds-s3/plugin
and you guess, i have this error
github.com/ipfs/go-ds-s3/plugin imports
github.com/ipfs/go-ipfs/plugin imports
github.com/ipfs/go-ipfs/core imports
github.com/ipfs/go-ipfs/core/node/libp2p imports
github.com/libp2p/go-libp2p/p2p/discovery/mdns_legacy: cannot find module providing package github.com/libp2p/go-libp2p/p2p/discovery/mdns_legacy
I see the repo of go-libp2p and i notice that the p2p/discovery/mdns_legacy does not exist.
Can someone have some issue to resolve this ?