Panic with go 1.21
thielepaul opened this issue · 4 comments
thielepaul commented
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 . ."
zigo101 commented
Thanks for the report. I will try to fix this problem soon.
zigo101 commented
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.
zigo101 commented
@thielepaul
This problem has been fixed in v0.6.6.
thielepaul commented
Thanks a lot for fixing it so fast!