-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
70 lines (65 loc) · 2.71 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
module github.com/dkotik/mdsend
go 1.22
// replace (
// github.com/JohannesKaufmann/html-to-markdown => /home/fray/Documents/ember/vendor/github.com/JohannesKaufmann/html-to-markdown
// gopkg.in/russross/blackfriday.v2 => /home/fray/Documents/ember/vendor/gopkg.in/russross/blackfriday.v2
// )
require (
github.com/OneOfOne/xxhash v1.2.7
github.com/cespare/xxhash/v2 v2.1.2
github.com/charmbracelet/bubbles v0.10.2
github.com/charmbracelet/bubbletea v0.19.3
github.com/charmbracelet/lipgloss v0.4.0
github.com/davecgh/go-spew v1.1.1
// fyne.io/fyne v1.2.4
github.com/gotk3/gotk3 v0.6.3
github.com/hashicorp/go-multierror v1.1.1
// github.com/gobuffalo/packr/v2 v2.6.0 // indirect
github.com/leaanthony/spinner v0.5.3
github.com/mailgun/mailgun-go/v4 v4.0.0
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/russross/blackfriday/v2 v2.0.1
github.com/spf13/cobra v0.0.6
github.com/spf13/viper v1.4.0
github.com/yuin/goldmark v1.4.5
github.com/yuin/goldmark-meta v1.0.0
// gopkg.in/russross/blackfriday.v2 v2.0.0-00010101000000-000000000000
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/nicksnyder/go-i18n/v2 v2.4.0
golang.org/x/text v0.14.0
)
require (
github.com/charmbracelet/harmonica v0.1.0 // indirect
github.com/containerd/console v1.0.2 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/go-chi/chi v4.0.0+incompatible // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/leaanthony/synx v0.1.0 // indirect
github.com/leaanthony/wincursor v0.1.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/magiconair/properties v1.8.0 // indirect
github.com/mailru/easyjson v0.7.0 // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.9.0 // indirect
github.com/pelletier/go-toml v1.2.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/spf13/afero v1.1.2 // indirect
github.com/spf13/cast v1.3.0 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/term v0.0.0-20210422114643-f5beecf764ed // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
)