common/go.mod
kayos cb6e9c71a6
entropy: fix race condition, massive performance boost (#17)
* Fix[entropy]: Implement rand pool to remediate splitmix64 race condition

* Perf[entropy]: Use recycled byte buffers for random strings

* Refactor[entropy][testing][bench]: clean up test code and report allocations

* Refactor[entropy]: nil out rand pointer after we put it back into the pool

* Testing[entropy]: fix coverage

* Fix[entropy]: Fix race condition during testing conditions

* gomod: retract premature tags
2023-09-06 23:45:44 -07:00

17 lines
270 B
Modula-2

module git.tcp.direct/kayos/common
go 1.19
require (
golang.org/x/crypto v0.12.0
nullprogram.com/x/rng v1.1.0
)
require golang.org/x/sys v0.11.0 // indirect
retract (
v0.0.0-20220210125455-40e3d2190a52
v0.9.0 // premature
v0.9.1 // premature (race condition)
)