mirror of
https://github.com/nais/wonderwall.git
synced 2026-05-07 00:46:56 +00:00
69 lines
2.8 KiB
Modula-2
69 lines
2.8 KiB
Modula-2
module github.com/nais/wonderwall
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/alicebob/miniredis/v2 v2.30.0
|
|
github.com/bmatcuk/doublestar/v4 v4.6.0
|
|
github.com/bsm/redislock v0.9.0
|
|
github.com/go-chi/chi/v5 v5.0.8
|
|
github.com/google/uuid v1.3.0
|
|
github.com/lestrrat-go/jwx/v2 v2.0.8
|
|
github.com/nais/liberator v0.0.0-20230124131422-38bd39b0f0af
|
|
github.com/prometheus/client_golang v1.14.0
|
|
github.com/redis/go-redis/v9 v9.0.2
|
|
github.com/sethvargo/go-retry v0.2.4
|
|
github.com/sirupsen/logrus v1.9.0
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/spf13/viper v1.15.0
|
|
github.com/stretchr/testify v1.8.1
|
|
go.uber.org/automaxprocs v1.5.1
|
|
golang.org/x/oauth2 v0.5.0
|
|
golang.org/x/vuln v0.0.0-20230207141452-6b5ae5be2408
|
|
honnef.co/go/tools v0.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.2.1 // indirect
|
|
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.2.0 // 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.6.0 // indirect
|
|
github.com/goccy/go-json v0.10.0 // 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.1 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
|
github.com/prometheus/common v0.39.0 // indirect
|
|
github.com/prometheus/procfs v0.9.0 // indirect
|
|
github.com/spf13/afero v1.9.3 // indirect
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/subosito/gotenv v1.4.2 // indirect
|
|
github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64 // indirect
|
|
golang.org/x/crypto v0.6.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230206171751-46f607a40771 // indirect
|
|
golang.org/x/exp/typeparams v0.0.0-20230206171751-46f607a40771 // indirect
|
|
golang.org/x/mod v0.8.0 // indirect
|
|
golang.org/x/net v0.6.0 // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/text v0.7.0 // indirect
|
|
golang.org/x/tools v0.5.1-0.20230117180257-8aba49bb5ea2 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|