-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
62 additions
and
485 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
golang 1.21.3 | ||
golang 1.23.2 | ||
golangci-lint 1.55.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,52 @@ | ||
module github.com/haimgel/slack-status | ||
|
||
go 1.21 | ||
go 1.23.2 | ||
|
||
require ( | ||
github.com/browserutils/kooky v0.2.1-0.20230922163139-4c502115ec22 | ||
github.com/slack-go/slack v0.11.3 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/spf13/viper v1.17.0 | ||
github.com/browserutils/kooky v0.2.3 | ||
github.com/slack-go/slack v0.12.0 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/spf13/viper v1.19.0 | ||
) | ||
|
||
require ( | ||
github.com/Velocidex/json v0.0.0-20220224052537-92f3c0326e5a // indirect | ||
github.com/Velocidex/ordereddict v0.0.0-20230909174157-2aa49cc5d11d // indirect | ||
github.com/Velocidex/yaml/v2 v2.2.8 // indirect | ||
github.com/bobesa/go-domain-util v0.0.0-20190911083921-4033b5f7dd89 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-ini/ini v1.67.0 // indirect | ||
github.com/go-sqlite/sqlite3 v0.0.0-20180313105335-53dd8e640ee7 // indirect | ||
github.com/godbus/dbus/v5 v5.1.0 // indirect | ||
github.com/gonuts/binary v0.2.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/gorilla/websocket v1.5.3 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/keybase/go-keychain v0.0.0-20230523030712-b5615109f100 // indirect | ||
github.com/keybase/go-keychain v0.0.0-20231219164618-57a3676c3af6 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.1.0 // indirect | ||
github.com/sagikazarmark/locafero v0.3.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.3 // indirect | ||
github.com/sagikazarmark/locafero v0.6.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/spf13/afero v1.10.0 // indirect | ||
github.com/spf13/cast v1.5.1 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.7.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/zalando/go-keyring v0.2.3 // indirect | ||
github.com/zalando/go-keyring v0.2.5 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/crypto v0.28.0 // indirect | ||
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect | ||
golang.org/x/net v0.30.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
golang.org/x/text v0.19.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
www.velocidex.com/golang/go-ese v0.2.0 // indirect | ||
) | ||
|
||
// Use a patched version because the official one does not support XOXC tokens: https://github.com/slack-go/slack/issues/996 | ||
replace github.com/slack-go/slack => github.com/rusq/slack v0.11.300 | ||
replace github.com/slack-go/slack => github.com/rusq/slack v0.12.0 | ||
|
||
// Fix for Chrome 130 support: https://github.com/browserutils/kooky/issues/89 | ||
replace github.com/browserutils/kooky => github.com/DP19/kooky v0.2.3 |
Oops, something went wrong.