-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update SDK * Update Go version * Update deps
- Loading branch information
Showing
2 changed files
with
81 additions
and
88 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,61 @@ | ||
module github.com/gatewayd-io/gatewayd-plugin-cache | ||
|
||
go 1.23.1 | ||
go 1.23.3 | ||
|
||
require ( | ||
github.com/alicebob/miniredis/v2 v2.30.5 | ||
github.com/gatewayd-io/gatewayd v0.9.7 | ||
github.com/gatewayd-io/gatewayd-plugin-sdk v0.3.1 | ||
github.com/getsentry/sentry-go v0.28.1 | ||
github.com/alicebob/miniredis/v2 v2.33.0 | ||
github.com/gatewayd-io/gatewayd v0.9.10 | ||
github.com/gatewayd-io/gatewayd-plugin-sdk v0.3.4 | ||
github.com/getsentry/sentry-go v0.29.1 | ||
github.com/go-co-op/gocron v1.37.0 | ||
github.com/go-redis/redis/v8 v8.11.5 | ||
github.com/hashicorp/go-hclog v1.6.3 | ||
github.com/hashicorp/go-plugin v1.6.1 | ||
github.com/jackc/pgx/v5 v5.7.0 | ||
github.com/prometheus/client_golang v1.20.3 | ||
github.com/hashicorp/go-plugin v1.6.2 | ||
github.com/jackc/pgx/v5 v5.7.1 | ||
github.com/prometheus/client_golang v1.20.5 | ||
github.com/spf13/cast v1.7.0 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/zenizh/go-capturer v0.0.0-20211219060012-52ea6c8fed04 | ||
google.golang.org/grpc v1.66.0 | ||
google.golang.org/protobuf v1.34.2 | ||
google.golang.org/grpc v1.68.0 | ||
google.golang.org/protobuf v1.35.1 | ||
) | ||
|
||
require ( | ||
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect | ||
github.com/alicebob/gopher-json v0.0.0-20230218143504-906a9b012302 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/expr-lang/expr v1.16.9 // indirect | ||
github.com/fatih/color v1.17.0 // indirect | ||
github.com/fatih/color v1.18.0 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect | ||
github.com/hashicorp/yamux v0.1.1 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 // indirect | ||
github.com/hashicorp/yamux v0.1.2 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mitchellh/go-testing-interface v1.14.1 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/oklog/run v1.1.0 // indirect | ||
github.com/onsi/gomega v1.27.10 // indirect | ||
github.com/pganalyze/pg_query_go/v5 v5.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.59.1 // indirect | ||
github.com/prometheus/common v0.60.1 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/redis/go-redis/v9 v9.6.1 // indirect | ||
github.com/redis/go-redis/v9 v9.7.0 // indirect | ||
github.com/robfig/cron/v3 v3.0.1 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/rs/zerolog v1.33.0 // indirect | ||
github.com/tetratelabs/wazero v1.8.0 // indirect | ||
github.com/wasilibs/go-pgquery v0.0.0-20240826014338-9ea9e19d01fd // indirect | ||
github.com/tetratelabs/wazero v1.8.1 // indirect | ||
github.com/wasilibs/go-pgquery v0.0.0-20241011013927-817756c5aae4 // indirect | ||
github.com/wasilibs/wazero-helpers v0.0.0-20240620070341-3dff1577cd52 // indirect | ||
github.com/yuin/gopher-lua v1.1.0 // indirect | ||
github.com/yuin/gopher-lua v1.1.1 // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
golang.org/x/net v0.29.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
golang.org/x/net v0.31.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.