diff --git a/.goreleaser.yml b/.goreleaser.yml index 4e04d09..f180525 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -12,24 +12,19 @@ builds: - darwin - windows goarch: - - 386 - amd64 - arm - arm64 goarm: - 6 - 7 - gomips: - - hardfloat - - softfloat ignore: - - goos: darwin - goarch: 386 - # TODO: remove when https://github.com/go-ole/go-ole/issues/202 will be fixed - goos: windows goarch: arm - goos: windows goarch: arm64 + - goos: darwin + goarch: arm64 archives: - id: rportcli builds: diff --git a/go.mod b/go.mod index fe663fe..408eca0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/cloudradar-monitoring/rportcli -go 1.16 +go 1.18 require ( github.com/breathbath/go_utils/v2 v2.0.1 @@ -9,11 +9,9 @@ require ( github.com/fatih/color v1.10.0 github.com/gorilla/websocket v1.4.2 github.com/magiconair/properties v1.8.4 - github.com/mattn/go-runewidth v0.0.10 // indirect github.com/nathan-fiscaletti/consolesize-go v0.0.0-20210105204122-a87d9f614b9d github.com/olekukonko/tablewriter v0.0.4 github.com/pkg/errors v0.8.1 - github.com/rivo/uniseg v0.2.0 // indirect github.com/sirupsen/logrus v1.7.0 github.com/spf13/cobra v1.1.1 github.com/spf13/pflag v1.0.5 @@ -22,3 +20,14 @@ require ( golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c ) + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/mattn/go-colorable v0.1.8 // indirect + github.com/mattn/go-isatty v0.0.12 // indirect + github.com/mattn/go-runewidth v0.0.10 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/rivo/uniseg v0.2.0 // indirect + github.com/stretchr/objx v0.1.1 // indirect +)