-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
43 lines (39 loc) · 1.57 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
module github.com/adamrdrew/mosh
go 1.18
require (
github.com/cavaliergopher/grab/v3 v3.0.1
github.com/faiface/beep v1.1.0
github.com/gabriel-vasile/mimetype v1.4.0
github.com/sevlyar/go-daemon v0.1.5
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/djherbis/atime v1.1.0 // indirect
github.com/hajimehoshi/go-mp3 v0.3.0 // indirect
github.com/hajimehoshi/oto v0.7.1 // indirect
github.com/icza/bitio v1.0.0 // indirect
github.com/jfreymuth/oggvorbis v1.0.1 // indirect
github.com/jfreymuth/vorbis v1.0.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mewkiz/flac v1.0.7 // indirect
github.com/mewkiz/pkg v0.0.0-20190919212034-518ade7978e2 // indirect
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8 // indirect
golang.org/x/image v0.0.0-20190227222117-0694c2d4d067 // indirect
golang.org/x/mobile v0.0.0-20190415191353-3e0bab5405d6 // indirect
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 // indirect
)
require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jedib0t/go-pretty/v6 v6.3.1
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/spf13/cobra v1.4.0
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.7.1
golang.org/x/sys v0.0.0-20220517195934-5e4e11fc645e // indirect
)