mirror of
https://github.com/lukaszraczylo/graphql-monitoring-proxy.git
synced 2026-06-05 23:03:48 +00:00
b10a28bf52
* General code optimisations.
55 lines
2.1 KiB
Modula-2
55 lines
2.1 KiB
Modula-2
module github.com/lukaszraczylo/graphql-monitoring-proxy
|
|
|
|
go 1.22.4
|
|
|
|
require (
|
|
github.com/VictoriaMetrics/metrics v1.34.0
|
|
github.com/alicebob/miniredis/v2 v2.33.0
|
|
github.com/avast/retry-go/v4 v4.6.0
|
|
github.com/goccy/go-json v0.10.3
|
|
github.com/gofiber/fiber/v2 v2.52.4
|
|
github.com/gofrs/flock v0.9.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gookit/goutil v0.6.15
|
|
github.com/graphql-go/graphql v0.8.1
|
|
github.com/jackc/pgx/v5 v5.6.0
|
|
github.com/lukaszraczylo/ask v0.0.0-20230927103145-2ff1123b4415
|
|
github.com/lukaszraczylo/go-ratecounter v0.1.12
|
|
github.com/lukaszraczylo/go-simple-graphql v1.2.17
|
|
github.com/redis/go-redis/v9 v9.5.3
|
|
github.com/stretchr/testify v1.9.0
|
|
github.com/valyala/fasthttp v1.55.0
|
|
)
|
|
|
|
require (
|
|
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
|
|
github.com/andybalholm/brotli v1.1.0 // 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/gookit/color v1.5.4 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
|
github.com/klauspost/compress v1.17.9 // 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/rs/zerolog v1.33.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
|
|
github.com/yuin/gopher-lua v1.1.1 // indirect
|
|
golang.org/x/crypto v0.24.0 // indirect
|
|
golang.org/x/net v0.26.0 // indirect
|
|
golang.org/x/sync v0.7.0 // indirect
|
|
golang.org/x/sys v0.21.0 // indirect
|
|
golang.org/x/term v0.21.0 // indirect
|
|
golang.org/x/text v0.16.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|