mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-16 14:27:01 +00:00
This commit updates the uses of math/rand to math/rand/v2, which was released in Go 1.22 (2024-02). The new package is generally safer, see https://go.dev/blog/randv2 for the details. There are no user-visible changes, it is only adjusting the name of functions, simplify some code thanks to v2 having a better API, etc.
19 lines
432 B
Modula-2
19 lines
432 B
Modula-2
module blitiri.com.ar/go/chasquid
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
blitiri.com.ar/go/log v1.1.0
|
|
blitiri.com.ar/go/spf v1.5.1
|
|
blitiri.com.ar/go/systemd v1.1.0
|
|
github.com/google/go-cmp v0.6.0
|
|
golang.org/x/crypto v0.29.0
|
|
golang.org/x/net v0.31.0
|
|
golang.org/x/term v0.26.0
|
|
golang.org/x/text v0.20.0
|
|
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d
|
|
google.golang.org/protobuf v1.35.2
|
|
)
|
|
|
|
require golang.org/x/sys v0.27.0 // indirect
|