elvish/go.mod
Kurtis Rader 7bbf75756c Replace "kr" package dependency with "creack"
I was working on issue #661 and noticed that github.com/kr/pty was dead
when I ran into a problem with that module on macOS (GOARCH == darwin).
Replace that dependency with github.com/creack/pty which is ostensibly
being actively maintained.

I also chose to remove a couple of obsolete module signatures at the
same time.
2020-10-10 22:41:09 +01:00

13 lines
296 B
Modula-2

module github.com/elves/elvish
require (
github.com/BurntSushi/toml v0.3.1
github.com/creack/pty v1.1.11
github.com/mattn/go-isatty v0.0.12
github.com/xiaq/persistent v0.0.0-20200820214153-3175cfb92e14
go.etcd.io/bbolt v1.3.5
golang.org/x/sys v0.0.0-20200824131525-c12d262b63d8
)
go 1.14