go101/golds

Panic with go 1.21

thielepaul opened this issue · 4 comments

When I use golds with go 1.21, I always get: panic: ParsePackages: dependency package cmp not found

Here is a one-liner to reproduce the issue: docker run --rm -it golang:1.21 bash -c "git clone https://github.com/go101/golds.git && cd golds && go run . ."

Thanks for the report. I will try to fix this problem soon.

Progress: it looks that the pseudo-package builtin imports Go 1.21 introduced cmp package (it is a really weird design).

Will fix it soon.

@thielepaul
This problem has been fixed in v0.6.6.

Thanks a lot for fixing it so fast!