mirror of
https://github.com/MickMake/GoSungrow.git
synced 2025-03-22 15:41:43 +01:00
74 lines
3.2 KiB
Modula-2
74 lines
3.2 KiB
Modula-2
module GoSungrow
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/acarl005/textcol v0.0.0
|
|
github.com/eclipse/paho.mqtt.golang v1.3.5
|
|
github.com/go-co-op/gocron v1.13.0
|
|
github.com/go-git/go-billy/v5 v5.3.1
|
|
github.com/go-git/go-git/v5 v5.4.2
|
|
github.com/mattn/go-colorable v0.1.12
|
|
github.com/olekukonko/tablewriter v0.0.5
|
|
github.com/spf13/cobra v1.3.0
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/spf13/viper v1.10.1
|
|
github.com/wcharczuk/go-chart/v2 v2.1.0
|
|
github.com/willf/pad v0.0.0-20200313202418-172aa767f2a4
|
|
go.pennock.tech/tabular v1.1.3
|
|
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b
|
|
golang.org/x/sys v0.0.0-20220307203707-22a9840ba4d7
|
|
google.golang.org/api v0.71.0
|
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
|
)
|
|
|
|
require (
|
|
cloud.google.com/go/compute v1.5.0 // indirect
|
|
github.com/Microsoft/go-winio v0.4.16 // indirect
|
|
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
|
|
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
|
|
github.com/acomagu/bufpipe v1.0.3 // indirect
|
|
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
|
|
github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4 // indirect
|
|
github.com/emirpasic/gods v1.12.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/go-git/gcfg v1.5.0 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
|
|
github.com/gorilla/websocket v1.4.2 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
|
|
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
|
|
github.com/magiconair/properties v1.8.5 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/mattn/go-runewidth v0.0.13 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.3 // indirect
|
|
github.com/pelletier/go-toml v1.9.4 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/robfig/cron/v3 v3.0.1 // indirect
|
|
github.com/sergi/go-diff v1.1.0 // indirect
|
|
github.com/spf13/afero v1.6.0 // indirect
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/subosito/gotenv v1.2.0 // indirect
|
|
github.com/xanzy/ssh-agent v0.3.0 // indirect
|
|
go.opencensus.io v0.23.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
|
|
golang.org/x/image v0.0.0-20200927104501-e162460cd6b5 // indirect
|
|
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8 // indirect
|
|
google.golang.org/grpc v1.44.0 // indirect
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
gopkg.in/ini.v1 v1.66.2 // indirect
|
|
gopkg.in/warnings.v0 v0.1.2 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|