mirror of
https://github.com/nais/wonderwall.git
synced 2026-05-08 09:27:12 +00:00
65 lines
2.8 KiB
Modula-2
65 lines
2.8 KiB
Modula-2
module github.com/nais/wonderwall
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/alicebob/miniredis/v2 v2.23.0
|
|
github.com/bsm/redislock v0.7.2
|
|
github.com/go-chi/chi/v5 v5.0.7
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/google/uuid v1.3.0
|
|
github.com/lestrrat-go/jwx/v2 v2.0.6
|
|
github.com/nais/liberator v0.0.0-20220912093159-eedd304fc123
|
|
github.com/prometheus/client_golang v1.13.0
|
|
github.com/sethvargo/go-retry v0.2.3
|
|
github.com/sirupsen/logrus v1.9.0
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/spf13/viper v1.13.0
|
|
github.com/stretchr/testify v1.8.0
|
|
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1
|
|
)
|
|
|
|
require (
|
|
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/fsnotify/fsnotify v1.5.4 // indirect
|
|
github.com/goccy/go-json v0.9.11 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/lestrrat-go/blackmagic v1.0.1 // indirect
|
|
github.com/lestrrat-go/httpcc v1.0.1 // indirect
|
|
github.com/lestrrat-go/httprc v1.0.4 // indirect
|
|
github.com/lestrrat-go/iter v1.0.2 // indirect
|
|
github.com/lestrrat-go/option v1.0.0 // indirect
|
|
github.com/magiconair/properties v1.8.6 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
|
github.com/onsi/gomega v1.20.0 // indirect
|
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.37.0 // indirect
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
|
github.com/spf13/afero v1.9.2 // indirect
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/subosito/gotenv v1.4.1 // indirect
|
|
github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64 // indirect
|
|
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect
|
|
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
|
|
golang.org/x/sys v0.0.0-20220915200043-7b5979e65e41 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|