Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 25 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,48 @@ module github.com/opensatelliteproject/SatHelperApp
require (
github.com/BurntSushi/toml v0.3.1
github.com/airking05/termui v2.2.0+incompatible
github.com/go-stack/stack v1.8.0 // indirect
github.com/gogo/protobuf v1.1.1 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/golang/protobuf v1.3.2
github.com/golang/protobuf v1.4.3
github.com/jonas-p/go-shp v0.1.1
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/llgcode/draw2d v0.0.0-20180825133448-f52c8a71aff0
github.com/logrusorgru/aurora v0.0.0-20181002194514-a7b3b318ed4e
github.com/lucasb-eyer/go-colorful v0.0.0-20181028223441-12d3b2882a08
github.com/maruel/panicparse v1.1.1 // indirect
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/mewkiz/pkg v0.0.0-20190222151137-b7948a1ad1b1
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/myriadrf/limedrv v0.0.0-20190225221912-8583a26e3fce
github.com/nsf/termbox-go v0.0.0-20190121233118-02980233997d
github.com/opensatelliteproject/goaec v0.0.0-20190224065807-d814e01b69fa
github.com/opensatelliteproject/libsathelper v0.0.0-20190224071010-9df110e77627
github.com/prometheus/client_golang v1.1.0
github.com/prometheus/common v0.6.0
github.com/quan-to/slog v0.0.0-20190317205605-56a2b4159924
github.com/prometheus/client_golang v1.11.1
github.com/prometheus/common v0.26.0
github.com/racerxdl/fastconvert v0.0.0-20190129064530-871b6f6cd82a
github.com/racerxdl/go.fifo v0.0.0-20180604061744-c6aa83afe374
github.com/racerxdl/segdsp v0.0.0-20190329062126-4f400f793b40
github.com/racerxdl/spy2go v0.0.0-20190103011754-14102c047be5
github.com/richardwilkes/toolbox v1.10.0
github.com/sirupsen/logrus v1.3.0 // indirect
golang.org/x/crypto v0.0.0-20190313024323-a1f597ede03a // indirect
golang.org/x/image v0.0.0-20190227222117-0694c2d4d067
golang.org/x/net v0.0.0-20190613194153-d28f0bde5980
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2
golang.org/x/net v0.0.0-20200625001655-4c5254603344
golang.org/x/text v0.3.2
google.golang.org/grpc v1.19.1
gopkg.in/alecthomas/kingpin.v2 v2.2.6
)

require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/maruel/panicparse v1.1.1 // indirect
github.com/mattn/go-runewidth v0.0.4 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/procfs v0.6.0 // indirect
github.com/sirupsen/logrus v1.6.0 // indirect
golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40 // indirect
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8 // indirect
google.golang.org/protobuf v1.26.0-rc.1 // indirect
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
)
Loading