- Added guards at the bucket level, to ensure that getting an item in an empty bucket doesn't cause an error. - Added grow() and shrink() functions to Table, to prevent a capacity of 0 from not being able to grow. - Updated the fuzz test to use `go_fuzz-utils`.
13 lines
317 B
Modula-2
13 lines
317 B
Modula-2
module git.maximhutz.com/tools/go-cuckoo
|
|
|
|
go 1.25.6
|
|
|
|
require github.com/stretchr/testify v1.11.1
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/trailofbits/go-fuzz-utils v0.0.0-20260318143407-0907cafe7589
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|