delve/go.mod
Hyang-Ah Hana Kim cec23c0aa1
go.mod: require go-delve/liner instead of peterh/liner (#2905)
Use of `replace` in go.mod breaks delve installation using
`go install`. (see https://github.com/golang/go/issues/40276)
Workaround this limitation by explicitly require the fork
github.com/go-delve/liner.

go-delve/liner@v1.2.2-1 already has go.mod module name fixed
to be github.com/go-delve/liner.

Fixes go-delve/delve#2904
2022-02-14 18:42:43 +01:00

25 lines
770 B
Modula-2

module github.com/go-delve/delve
go 1.16
require (
github.com/cilium/ebpf v0.7.0
github.com/cosiner/argv v0.1.0
github.com/creack/pty v1.1.9
github.com/derekparker/trie v0.0.0-20200317170641-1fdf38b7b0e9
github.com/go-delve/liner v1.2.2-1
github.com/google/go-dap v0.6.0
github.com/hashicorp/golang-lru v0.5.4
github.com/mattn/go-colorable v0.0.9
github.com/mattn/go-isatty v0.0.3
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/sirupsen/logrus v1.6.0
github.com/spf13/cobra v1.1.3
github.com/stretchr/testify v1.7.0 // indirect
go.starlark.net v0.0.0-20200821142938-949cc6f4b097
golang.org/x/arch v0.0.0-20190927153633-4e8777c89be4
golang.org/x/sys v0.0.0-20211117180635-dee7805ff2e1
golang.org/x/tools v0.1.9
gopkg.in/yaml.v2 v2.4.0
)