diff options
| author | Tobias Klauser <tklauser@distanz.ch> | 2021-04-22 13:53:56 +0200 |
|---|---|---|
| committer | Eric Biggers <ebiggers3@gmail.com> | 2021-04-22 12:27:31 -0700 |
| commit | db79840bc68f803c23477e7c093e3cff2a7633ba (patch) | |
| tree | a1753ed5d100da641b1e2ddcbdf32e002a6169e7 /go.mod | |
| parent | 0821f2a20233e390d89af47c668f9b8f08f088ad (diff) | |
cmd/fscrypt: use golang.org/x/term
The golang.org/x/crypto/ssh/terminal package is deprecated and merely a
wrapper around golang.org/x/term. Thus, use the latter directly.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10,7 +10,8 @@ require ( github.com/wadey/gocovmerge v0.0.0-20160331181800-b5bfa59ec0ad golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529 golang.org/x/lint v0.0.0-20190930215403-16217165b5de - golang.org/x/sys v0.0.0-20191127021746-63cb32ae39b2 + golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 + golang.org/x/term v0.0.0-20210422114643-f5beecf764ed golang.org/x/tools v0.0.0-20191025023517-2077df36852e honnef.co/go/tools v0.0.1-2019.2.3 ) |