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
|
2020-12-21 00:37:48 +02:00
|
|
|
github.com/cli/safeexec v1.0.0
|
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
|
2021-06-15 00:12:38 +02:00
|
|
|
github.com/gdamore/tcell/v2 v2.3.11 // indirect
|
|
|
|
github.com/go-errors/errors v1.4.0
|
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
|
2021-06-15 00:12:38 +02:00
|
|
|
github.com/jesseduffield/gocui v0.3.1-0.20210614081440-74b42ecad52b
|
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-11-28 04:14:48 +02:00
|
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
2021-07-16 14:06:01 +02:00
|
|
|
github.com/kyokomi/emoji/v2 v2.2.8
|
2020-12-24 05:45:59 +02:00
|
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
2020-09-26 02:23:10 +02:00
|
|
|
github.com/mattn/go-colorable v0.1.7 // indirect
|
2021-06-05 14:17:49 +02:00
|
|
|
github.com/mattn/go-runewidth v0.0.13
|
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
|
2020-11-28 04:14:48 +02:00
|
|
|
github.com/sahilm/fuzzy v0.1.0
|
2019-11-10 14:16:17 +02:00
|
|
|
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
|
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
|
2021-06-15 00:12:38 +02:00
|
|
|
golang.org/x/sys v0.0.0-20210611083646-a4fc73990273 // indirect
|
2021-06-05 14:17:49 +02:00
|
|
|
golang.org/x/term v0.0.0-20210503060354-a79de5458b56 // indirect
|
2021-04-02 05:33:20 +02:00
|
|
|
golang.org/x/text v0.3.6 // 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
|