build: upgrade to go 1.17 and dependencies

This commit is contained in:
2021-09-01 20:53:50 +02:00
parent 44faf5fa5d
commit b6f9ca4f3f
116 changed files with 10159 additions and 1933 deletions

View File

@ -26,6 +26,14 @@ func Bool() bool {
return randSeed%2 == 1
}
// Intn returns a deterministically random integer between 0 and n-1, inclusive.
func Intn(n int) int {
if n <= 0 {
panic("must be positive")
}
return int(randSeed % uint64(n))
}
// randSeed is a best-effort at an approximate hash of the Go binary.
var randSeed = binaryHash()