mirror of
https://github.com/lukaszraczylo/graphql-monitoring-proxy.git
synced 2026-06-05 23:03:48 +00:00
51 lines
1.9 KiB
Modula-2
51 lines
1.9 KiB
Modula-2
module github.com/lukaszraczylo/graphql-monitoring-proxy
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/VictoriaMetrics/metrics v1.33.1
|
|
github.com/avast/retry-go/v4 v4.6.0
|
|
github.com/goccy/go-json v0.10.2
|
|
github.com/gofiber/fiber v1.14.6
|
|
github.com/gofiber/fiber/v2 v2.52.4
|
|
github.com/gofrs/flock v0.8.1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gookit/goutil v0.6.15
|
|
github.com/graphql-go/graphql v0.8.1
|
|
github.com/lukaszraczylo/ask v0.0.0-20230927103145-2ff1123b4415
|
|
github.com/lukaszraczylo/go-ratecounter v0.1.8
|
|
github.com/lukaszraczylo/go-simple-graphql v1.2.14
|
|
github.com/rs/zerolog v1.32.0
|
|
github.com/stretchr/testify v1.9.0
|
|
github.com/valyala/fasthttp v1.53.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.1.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/gofiber/utils v0.0.10 // indirect
|
|
github.com/gookit/color v1.5.4 // indirect
|
|
github.com/gorilla/schema v1.1.0 // indirect
|
|
github.com/klauspost/compress v1.17.8 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/rogpeppe/go-internal v1.11.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fastrand v1.1.0 // indirect
|
|
github.com/valyala/histogram v1.2.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
|
|
golang.org/x/net v0.25.0 // indirect
|
|
golang.org/x/sync v0.7.0 // indirect
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
golang.org/x/term v0.20.0 // indirect
|
|
golang.org/x/text v0.15.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|