2019-08-26 16:53:38 +02:00
|
|
|
module github.com/jesseduffield/lazygit
|
|
|
|
|
2020-03-04 01:14:49 +02:00
|
|
|
go 1.14
|
2019-08-26 16:53:38 +02:00
|
|
|
|
|
|
|
require (
|
2020-10-03 06:54:55 +02:00
|
|
|
github.com/OpenPeeDeeP/xdg v1.0.0
|
2020-08-23 14:04:24 +02:00
|
|
|
github.com/atotto/clipboard v0.1.2
|
2020-09-26 02:23:10 +02:00
|
|
|
github.com/aybabtme/humanlog v0.4.1
|
2019-08-26 16:53:38 +02:00
|
|
|
github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
|
2020-08-25 00:12:16 +02:00
|
|
|
github.com/creack/pty v1.1.11
|
2020-09-26 02:23:10 +02:00
|
|
|
github.com/fatih/color v1.9.0
|
2019-11-14 13:03:32 +02:00
|
|
|
github.com/fsnotify/fsnotify v1.4.7
|
2020-08-23 09:40:42 +02:00
|
|
|
github.com/go-errors/errors v1.1.1
|
2020-09-26 02:23:10 +02:00
|
|
|
github.com/go-logfmt/logfmt v0.5.0 // indirect
|
2019-08-26 16:53:38 +02:00
|
|
|
github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
|
2019-11-12 13:54:02 +02:00
|
|
|
github.com/golang/protobuf v1.3.2 // indirect
|
2019-08-26 16:53:38 +02:00
|
|
|
github.com/google/go-cmp v0.3.1 // indirect
|
2020-10-08 00:02:34 +02:00
|
|
|
github.com/imdario/mergo v0.3.11
|
2019-12-13 12:29:12 +02:00
|
|
|
github.com/integrii/flaggy v1.4.0
|
2020-10-06 12:00:36 +02:00
|
|
|
github.com/jesseduffield/go-git/v5 v5.1.2-0.20201006095850-341962be15a4
|
2020-10-08 00:02:34 +02:00
|
|
|
github.com/jesseduffield/gocui v0.3.1-0.20201007110350-cc51e317126e
|
|
|
|
github.com/jesseduffield/termbox-go v0.0.0-20200823212418-a2289ed6aafe
|
2020-10-03 06:54:55 +02:00
|
|
|
github.com/jesseduffield/yaml v2.1.0+incompatible
|
2019-11-10 14:16:17 +02:00
|
|
|
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
|
2019-12-13 12:29:12 +02:00
|
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
|
2020-09-26 02:23:10 +02:00
|
|
|
github.com/mattn/go-colorable v0.1.7 // indirect
|
2020-05-13 13:08:53 +02:00
|
|
|
github.com/mattn/go-runewidth v0.0.9
|
2019-08-26 16:53:38 +02:00
|
|
|
github.com/mgutz/str v1.2.0
|
2019-11-10 14:16:17 +02:00
|
|
|
github.com/onsi/ginkgo v1.10.3 // indirect
|
|
|
|
github.com/onsi/gomega v1.7.1 // indirect
|
|
|
|
github.com/sirupsen/logrus v1.4.2
|
2019-08-26 16:53:38 +02:00
|
|
|
github.com/spkg/bom v0.0.0-20160624110644-59b7046e48ad
|
2019-11-10 14:16:17 +02:00
|
|
|
github.com/stretchr/testify v1.4.0
|
2019-08-26 16:53:38 +02:00
|
|
|
github.com/tcnksm/go-gitconfig v0.1.2
|
2020-10-06 12:00:36 +02:00
|
|
|
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0 // indirect
|
|
|
|
golang.org/x/net v0.0.0-20201002202402-0a1ea396d57c // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20201005172224-997123666555 // indirect
|
2019-08-26 16:53:38 +02:00
|
|
|
)
|
2020-10-06 11:50:54 +02:00
|
|
|
|
|
|
|
replace github.com/go-git/go-git/v5 => github.com/jesseduffield/go-git/v5 v5.1.1
|