oh-my-posh/src/go.mod

92 lines
3.7 KiB
Modula-2
Raw Normal View History

2021-09-09 22:25:12 -07:00
module oh-my-posh
2020-10-15 04:19:08 -07:00
2022-03-20 23:17:33 -07:00
go 1.18
2020-10-15 04:19:08 -07:00
require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1
2021-08-15 22:06:49 -07:00
github.com/Masterminds/sprig/v3 v3.2.2
2022-03-29 10:59:33 -07:00
github.com/alecthomas/assert v1.0.0
2020-11-14 11:04:04 -08:00
github.com/alecthomas/colour v0.1.0 // indirect
2022-07-01 12:29:30 -07:00
github.com/alecthomas/repr v0.1.0 // indirect
2022-03-29 10:59:33 -07:00
github.com/esimov/stackblur-go v1.1.0
github.com/fogleman/gg v1.3.0
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
2021-08-09 20:56:13 -07:00
github.com/google/uuid v1.3.0 // indirect
2022-07-01 12:29:30 -07:00
github.com/gookit/color v1.5.1
github.com/gookit/config/v2 v2.1.2
github.com/gookit/goutil v0.5.5 // indirect
github.com/huandu/xstrings v1.3.2 // indirect
2021-06-08 11:16:55 -07:00
github.com/mitchellh/copystructure v1.2.0 // indirect
2022-05-12 23:31:50 -07:00
github.com/mitchellh/mapstructure v1.5.0
2021-06-08 11:16:55 -07:00
github.com/sergi/go-diff v1.2.0 // indirect
2022-07-01 12:29:30 -07:00
github.com/shirou/gopsutil/v3 v3.22.6
2022-05-12 23:31:50 -07:00
github.com/stretchr/objx v0.4.0 // indirect
2022-07-01 12:29:30 -07:00
github.com/stretchr/testify v1.8.0
2021-10-20 04:26:07 -07:00
github.com/wayneashleyberry/terminal-dimensions v1.1.0
2022-07-01 12:29:30 -07:00
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
golang.org/x/image v0.0.0-20220617043117-41969df76e82
golang.org/x/sys v0.0.0-20220627191245-f75cf1eec38b
2021-10-20 04:26:07 -07:00
golang.org/x/text v0.3.7
2022-07-01 12:29:30 -07:00
gopkg.in/ini.v1 v1.66.6
2020-10-15 04:19:08 -07:00
)
require (
github.com/ConradIrwin/font v0.0.0-20210318200717-ce8d41cc0732
2022-07-01 12:29:30 -07:00
github.com/charmbracelet/bubbles v0.12.0
github.com/charmbracelet/bubbletea v0.22.0
github.com/charmbracelet/lipgloss v0.5.0
2022-07-01 12:29:30 -07:00
github.com/hashicorp/hcl/v2 v2.13.0
github.com/mattn/go-runewidth v0.0.13
2022-07-01 12:29:30 -07:00
github.com/spf13/cobra v1.5.0
golang.org/x/mod v0.5.1
2022-07-01 12:29:30 -07:00
gopkg.in/yaml.v3 v3.0.1
)
2021-09-01 04:23:21 -07:00
require (
2022-05-12 23:31:50 -07:00
github.com/BurntSushi/toml v1.1.0
2021-09-01 04:23:21 -07:00
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
2021-10-20 04:26:07 -07:00
github.com/go-ole/go-ole v1.2.6 // indirect
2022-07-01 12:29:30 -07:00
github.com/imdario/mergo v0.3.13 // indirect
2021-10-20 04:26:07 -07:00
github.com/json-iterator/go v1.1.12 // indirect
2022-07-01 12:29:30 -07:00
github.com/lufia/plan9stats v0.0.0-20220517141722-cf486979b281 // indirect
2021-10-20 04:26:07 -07:00
github.com/mattn/go-isatty v0.0.14 // indirect
2021-09-01 04:23:21 -07:00
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
2021-10-20 04:26:07 -07:00
github.com/modern-go/reflect2 v1.0.2 // indirect
2021-09-01 04:23:21 -07:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2022-05-12 23:31:50 -07:00
github.com/spf13/cast v1.5.0 // indirect
2022-03-29 10:59:33 -07:00
github.com/tklauser/go-sysconf v0.3.10 // indirect
2022-07-01 12:29:30 -07:00
github.com/tklauser/numcpus v0.5.0 // indirect
2021-09-01 04:23:21 -07:00
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
2022-07-01 12:29:30 -07:00
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
2021-09-01 04:23:21 -07:00
)
require (
dmitri.shuralyov.com/font/woff2 v0.0.0-20180220214647-957792cbbdab // indirect
2022-02-10 10:56:16 -08:00
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/atotto/clipboard v0.1.4 // indirect
github.com/containerd/console v1.0.3 // indirect
github.com/dsnet/compress v0.0.1 // indirect
2022-05-12 23:31:50 -07:00
github.com/google/go-cmp v0.5.8 // indirect
2022-03-12 13:04:08 -08:00
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
2022-02-10 10:56:16 -08:00
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
2022-07-01 12:29:30 -07:00
github.com/muesli/ansi v0.0.0-20211031195517-c9f0611b6c70 // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/muesli/reflow v0.3.0 // indirect
2022-07-01 12:29:30 -07:00
github.com/muesli/termenv v0.12.0 // indirect
2022-03-29 10:59:33 -07:00
github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sahilm/fuzzy v0.1.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
2022-03-12 13:04:08 -08:00
github.com/spf13/pflag v1.0.5 // indirect
2022-02-10 10:56:16 -08:00
github.com/yusufpapurcu/wmi v1.2.2 // indirect
github.com/zclconf/go-cty v1.10.0 // indirect
2022-07-01 12:29:30 -07:00
golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
)
2022-01-31 04:33:36 -08:00
replace github.com/atotto/clipboard v0.1.4 => github.com/jandedobbeleer/clipboard v0.1.4-1