generated from gatewayd-io/plugin-template-go
-
Notifications
You must be signed in to change notification settings - Fork 1
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
83 additions
and
120 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,43 +1,45 @@ | ||
module github.com/gatewayd-io/gatewayd-plugin-js | ||
|
||
go 1.22 | ||
go 1.23.3 | ||
|
||
require ( | ||
github.com/dop251/goja v0.0.0-20240220182346-e401ed450204 | ||
github.com/dop251/goja_nodejs v0.0.0-20240221231712-27eeffc9c235 | ||
github.com/gatewayd-io/gatewayd-plugin-sdk v0.2.13 | ||
github.com/getsentry/sentry-go v0.27.0 | ||
github.com/dop251/goja v0.0.0-20241024094426-79f3a7efcdbd | ||
github.com/dop251/goja_nodejs v0.0.0-20240728170619-29b559befffc | ||
github.com/gatewayd-io/gatewayd-plugin-sdk v0.3.4 | ||
github.com/getsentry/sentry-go v0.29.1 | ||
github.com/hashicorp/go-hclog v1.6.3 | ||
github.com/hashicorp/go-plugin v1.6.1 | ||
github.com/prometheus/client_golang v1.19.1 | ||
github.com/spf13/cast v1.6.0 | ||
github.com/wasilibs/go-pgquery v0.0.0-20240510022537-eb0917feddeb | ||
golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 | ||
google.golang.org/grpc v1.64.0 | ||
github.com/hashicorp/go-plugin v1.6.2 | ||
github.com/prometheus/client_golang v1.20.5 | ||
github.com/spf13/cast v1.7.0 | ||
github.com/wasilibs/go-pgquery v0.0.0-20241011013927-817756c5aae4 | ||
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f | ||
google.golang.org/grpc v1.68.0 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/dlclark/regexp2 v1.11.0 // indirect | ||
github.com/fatih/color v1.17.0 // indirect | ||
github.com/dlclark/regexp2 v1.11.4 // indirect | ||
github.com/fatih/color v1.18.0 // indirect | ||
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/pprof v0.0.0-20240402174815-29b9bb013b0f // indirect | ||
github.com/hashicorp/yamux v0.1.1 // indirect | ||
github.com/google/pprof v0.0.0-20241101162523-b92577c0c142 // 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/pganalyze/pg_query_go/v5 v5.1.0 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.53.0 // indirect | ||
github.com/prometheus/procfs v0.14.0 // indirect | ||
github.com/rs/zerolog v1.32.0 // indirect | ||
github.com/tetratelabs/wazero v1.7.2 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240515191416-fc5f0ca64291 // indirect | ||
google.golang.org/protobuf v1.34.1 // indirect | ||
github.com/prometheus/common v0.60.1 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/rs/zerolog v1.33.0 // indirect | ||
github.com/tetratelabs/wazero v1.8.1 // indirect | ||
github.com/wasilibs/wazero-helpers v0.0.0-20240620070341-3dff1577cd52 // 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/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect | ||
google.golang.org/protobuf v1.35.1 // indirect | ||
) |
Oops, something went wrong.