AlecAivazis / survey

A golang library for building interactive and accessible prompts with full support for windows and posix terminals.
MIT License
4.07k stars 351 forks source link

Use `golang.org/x/term` instead of `golang.org/x/crypto/ssh/terminal` #355

Closed tklauser closed 3 years ago

tklauser commented 3 years ago

The golang.org/x/crypto/ssh/terminal package is deprecated and merely a wrapper around golang.org/x/term. Use the latter directly.

AlecAivazis commented 3 years ago

Thanks for updating this @tklauser!