2024-08-09 03:50:41 +08:00
|
|
|
module bbb-graphql-middleware
|
2023-04-27 09:03:40 +08:00
|
|
|
|
2024-08-09 03:50:41 +08:00
|
|
|
go 1.22.5
|
2023-04-27 09:03:40 +08:00
|
|
|
|
|
|
|
require (
|
2024-08-30 05:40:52 +08:00
|
|
|
dario.cat/mergo v1.0.1
|
2024-04-10 01:37:57 +08:00
|
|
|
github.com/evanphx/json-patch v0.5.2
|
|
|
|
github.com/google/uuid v1.6.0
|
2024-08-09 03:50:41 +08:00
|
|
|
github.com/mattbaird/jsonpatch v0.0.0-20240118010651-0ba75a80ca38
|
|
|
|
github.com/prometheus/client_golang v1.19.1
|
2024-08-30 05:40:52 +08:00
|
|
|
github.com/redis/go-redis/v9 v9.6.1
|
2024-08-09 03:50:41 +08:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
|
|
|
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9
|
2024-08-30 05:40:52 +08:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2024-08-09 03:50:41 +08:00
|
|
|
nhooyr.io/websocket v1.8.11
|
2023-04-27 09:03:40 +08:00
|
|
|
)
|
2023-04-28 05:30:36 +08:00
|
|
|
|
2023-07-18 20:16:31 +08:00
|
|
|
require (
|
2024-08-08 22:28:46 +08:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-07-18 20:16:31 +08:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
2024-08-30 05:40:52 +08:00
|
|
|
github.com/kr/text v0.2.0 // indirect
|
2024-04-10 01:37:57 +08:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2024-08-08 22:28:46 +08:00
|
|
|
github.com/prometheus/client_model v0.5.0 // indirect
|
|
|
|
github.com/prometheus/common v0.48.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
|
|
|
golang.org/x/sys v0.17.0 // indirect
|
|
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
2023-07-18 20:16:31 +08:00
|
|
|
)
|