You've already forked armbian-router
mirror of
https://github.com/armbian/armbian-router.git
synced 2026-01-06 10:37:03 -08:00
- Clears cache on server state change (prevents no servers being available) - Improves speed of GetValue using generated getters - Moves maxminddb items into db package - Moves util.go into util package - Updates dependencies
53 lines
2.0 KiB
Modula-2
53 lines
2.0 KiB
Modula-2
module github.com/armbian/redirector
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/chi-middleware/logrus-logger v0.3.0
|
|
github.com/go-chi/chi/v5 v5.0.11
|
|
github.com/gwatts/rootcerts v0.0.0-20230901182830-152e8b13d00f
|
|
github.com/hashicorp/golang-lru v1.0.2
|
|
github.com/jmcvetta/randutil v0.0.0-20150817122601-2bb1b664bcff
|
|
github.com/onsi/ginkgo/v2 v2.15.0
|
|
github.com/onsi/gomega v1.31.1
|
|
github.com/oschwald/maxminddb-golang v1.12.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.18.0
|
|
github.com/samber/lo v1.39.0
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/sourcegraph/conc v0.3.0
|
|
github.com/spf13/viper v1.18.2
|
|
golang.org/x/text v0.14.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
|
github.com/go-logr/logr v1.3.0 // indirect
|
|
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
|
|
github.com/prometheus/client_model v0.5.0 // indirect
|
|
github.com/prometheus/common v0.46.0 // indirect
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
|
github.com/sagikazarmark/locafero v0.4.0 // indirect
|
|
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
|
|
github.com/spf13/afero v1.11.0 // indirect
|
|
github.com/spf13/cast v1.6.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect
|
|
golang.org/x/net v0.20.0 // indirect
|
|
golang.org/x/sys v0.16.0 // indirect
|
|
golang.org/x/tools v0.17.0 // indirect
|
|
google.golang.org/protobuf v1.32.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|