1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-24 08:52:21 +02:00
lazygit/go.mod

51 lines
2.1 KiB
Modula-2
Raw Normal View History

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
github.com/atotto/clipboard v0.1.2
github.com/aybabtme/humanlog v0.4.1
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
github.com/fatih/color v1.9.0 // indirect
2019-11-14 13:03:32 +02:00
github.com/fsnotify/fsnotify v1.4.7
github.com/gdamore/tcell/v2 v2.4.1-0.20220313203054-2a1a1b586447 // indirect
2021-10-17 04:00:44 +02:00
github.com/go-errors/errors v1.4.1
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
github.com/google/go-cmp v0.5.6 // indirect
github.com/gookit/color v1.4.2
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
2022-01-08 06:57:31 +02:00
github.com/jesseduffield/gocui v0.3.1-0.20220108045521-1945d7b9ed8b
github.com/jesseduffield/minimal/gitignore v0.3.3-0.20211018110810-9cde264e6b1e
2020-10-03 06:54:55 +02:00
github.com/jesseduffield/yaml v2.1.0+incompatible
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
github.com/kylelemons/godebug v1.1.0 // indirect
2021-07-16 14:06:01 +02:00
github.com/kyokomi/emoji/v2 v2.2.8
2021-10-23 09:17:35 +02:00
github.com/lucasb-eyer/go-colorful v1.2.0
github.com/mattn/go-colorable v0.1.11 // indirect
github.com/mattn/go-runewidth v0.0.13
2019-08-26 16:53:38 +02:00
github.com/mgutz/str v1.2.0
github.com/onsi/ginkgo v1.10.3 // indirect
github.com/onsi/gomega v1.7.1 // indirect
2022-01-08 06:57:31 +02:00
github.com/pmezard/go-difflib v1.0.0
github.com/sahilm/fuzzy v0.1.0
2022-01-26 01:34:56 +02:00
github.com/sanity-io/litter v1.5.2
github.com/sirupsen/logrus v1.4.2
2019-08-26 16:53:38 +02:00
github.com/spkg/bom v0.0.0-20160624110644-59b7046e48ad
2021-10-17 04:00:44 +02:00
github.com/stretchr/testify v1.7.0
2021-08-01 05:23:59 +02:00
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778
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
2022-01-08 06:57:31 +02:00
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
2021-10-17 04:00:44 +02:00
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
2021-09-27 11:51:44 +02:00
golang.org/x/text v0.3.7 // indirect
gopkg.in/ozeidan/fuzzy-patricia.v3 v3.0.0
2019-08-26 16:53:38 +02:00
)