mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
We now have two write interceptors, with one moved into faas-provider. This commit makes the gateway use the new external package and deletes its own. Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alex@openfaas.com>
32 lines
1.2 KiB
Modula-2
32 lines
1.2 KiB
Modula-2
module github.com/openfaas/faas/gateway
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/docker/distribution v2.8.1+incompatible
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/openfaas/faas-provider v0.19.1
|
|
github.com/openfaas/nats-queue-worker v0.0.0-20220805080536-d1d72d857b1c
|
|
github.com/prometheus/client_golang v1.13.0
|
|
github.com/prometheus/client_model v0.2.0
|
|
go.uber.org/goleak v1.1.12
|
|
golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/nats-io/nats.go v1.11.1-0.20210623165838-4b75fc59ae30 // indirect
|
|
github.com/nats-io/nkeys v0.3.0 // indirect
|
|
github.com/nats-io/nuid v1.0.1 // indirect
|
|
github.com/nats-io/stan.go v0.9.0 // indirect
|
|
github.com/prometheus/common v0.37.0 // indirect
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20220817201139-bc19a97f63c8 // indirect
|
|
golang.org/x/sys v0.0.0-20220823224334-20c2bfdbfe24 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
)
|