mirror of
https://github.com/nais/wonderwall.git
synced 2026-05-07 00:46:56 +00:00
67 lines
2.8 KiB
Modula-2
67 lines
2.8 KiB
Modula-2
module github.com/nais/wonderwall
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/alicebob/miniredis/v2 v2.22.0
|
|
github.com/go-chi/chi/v5 v5.0.7
|
|
github.com/go-chi/httplog v0.2.4
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/google/uuid v1.3.0
|
|
github.com/lestrrat-go/jwx/v2 v2.0.3
|
|
github.com/nais/liberator v0.0.0-20220708061353-10750ef0b304
|
|
github.com/prometheus/client_golang v1.12.2
|
|
github.com/rs/zerolog v1.27.0
|
|
github.com/sethvargo/go-retry v0.2.3
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/spf13/viper v1.12.0
|
|
github.com/stretchr/testify v1.8.0
|
|
golang.org/x/oauth2 v0.0.0-20220630143837-2104d58473e0
|
|
)
|
|
|
|
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.0.1 // 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.8 // 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.2 // 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/mattn/go-colorable v0.1.12 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // 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/pelletier/go-toml v1.9.5 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.2 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.36.0 // indirect
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
|
github.com/spf13/afero v1.8.2 // indirect
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/subosito/gotenv v1.4.0 // indirect
|
|
github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64 // indirect
|
|
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
|
|
golang.org/x/net v0.0.0-20220708220712-1185a9018129 // indirect
|
|
golang.org/x/sys v0.0.0-20220712014510-0a85c31ab51e // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
|
|
gopkg.in/ini.v1 v1.66.6 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|