1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00
Files
go-chasquid-smtp/go.mod
Alberto Bertogli fcdc49d742 chasquid-util: Update ReadPassword dependency
Today, we use `golang.org/x/crypto/ssh/terminal` to read passwords. That
package is obsolete, replaced with `golang.org/x/term`.

We couldn't move them because term wasn't compatible with Go 1.11 which
was our oldest supported Go version.

Now that we moved to Go 1.15 as the oldest supported version, we can do
the update.
2021-10-08 23:11:29 +01:00

17 lines
473 B
Modula-2

module blitiri.com.ar/go/chasquid
go 1.13
require (
blitiri.com.ar/go/log v1.1.0
blitiri.com.ar/go/spf v1.2.0
blitiri.com.ar/go/systemd v1.1.0
github.com/google/go-cmp v0.5.5
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a
golang.org/x/net v0.0.0-20210525063256-abc453219eb5
golang.org/x/sys v0.0.0-20210531080801-fdfd190a6549 // indirect
golang.org/x/term v0.0.0-20210503060354-a79de5458b56
golang.org/x/text v0.3.6
google.golang.org/protobuf v1.26.0
)