-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
mistakenelf
committed
Jun 15, 2023
1 parent
8d16920
commit fb84c5a
Showing
2 changed files
with
108 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,50 @@ | ||
module github.com/knipferrc/fm | ||
|
||
go 1.19 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/charmbracelet/bubbles v0.13.0 | ||
github.com/charmbracelet/bubbletea v0.22.1 | ||
github.com/charmbracelet/lipgloss v0.5.0 | ||
github.com/knipferrc/teacup v0.3.0 | ||
github.com/spf13/cobra v1.5.0 | ||
github.com/charmbracelet/bubbles v0.16.1 | ||
github.com/charmbracelet/bubbletea v0.24.2 | ||
github.com/charmbracelet/lipgloss v0.7.1 | ||
github.com/knipferrc/teacup v0.3.1 | ||
github.com/spf13/cobra v1.7.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/alecthomas/chroma v0.10.0 // indirect | ||
github.com/atotto/clipboard v0.1.4 // indirect | ||
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect | ||
github.com/aymerick/douceur v0.2.0 // indirect | ||
github.com/charmbracelet/glamour v0.5.0 // indirect | ||
github.com/containerd/console v1.0.3 // indirect | ||
github.com/charmbracelet/glamour v0.6.0 // indirect | ||
github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect | ||
github.com/disintegration/imaging v1.6.2 // indirect | ||
github.com/dlclark/regexp2 v1.7.0 // indirect | ||
github.com/dlclark/regexp2 v1.10.0 // indirect | ||
github.com/gorilla/css v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/ledongthuc/pdf v0.0.0-20220302134840-0c2507a12d80 // indirect | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mattn/go-localereader v0.0.1 // indirect | ||
github.com/mattn/go-runewidth v0.0.13 // indirect | ||
github.com/microcosm-cc/bluemonday v1.0.19 // indirect | ||
github.com/muesli/ansi v0.0.0-20211031195517-c9f0611b6c70 // indirect | ||
github.com/mattn/go-runewidth v0.0.14 // indirect | ||
github.com/microcosm-cc/bluemonday v1.0.24 // indirect | ||
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect | ||
github.com/muesli/cancelreader v0.2.2 // indirect | ||
github.com/muesli/reflow v0.3.0 // indirect | ||
github.com/muesli/termenv v0.12.0 // indirect | ||
github.com/muesli/termenv v0.15.1 // indirect | ||
github.com/olekukonko/tablewriter v0.0.5 // indirect | ||
github.com/rivo/uniseg v0.3.4 // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
github.com/rogpeppe/go-internal v1.10.0 // indirect | ||
github.com/sahilm/fuzzy v0.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/yuin/goldmark v1.4.13 // indirect | ||
github.com/yuin/goldmark v1.5.4 // indirect | ||
github.com/yuin/goldmark-emoji v1.0.1 // indirect | ||
golang.org/x/image v0.0.0-20220722155232-062f8c9fd539 // indirect | ||
golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b // indirect | ||
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect | ||
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/image v0.8.0 // indirect | ||
golang.org/x/net v0.11.0 // indirect | ||
golang.org/x/sync v0.3.0 // indirect | ||
golang.org/x/sys v0.9.0 // indirect | ||
golang.org/x/term v0.9.0 // indirect | ||
golang.org/x/text v0.10.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
) |
Oops, something went wrong.