forked from apache/apisix-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
137 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,92 @@ | ||
module github.com/apisix/manager-api | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/coreos/go-oidc/v3 v3.3.0 | ||
github.com/evanphx/json-patch/v5 v5.1.0 | ||
github.com/getkin/kin-openapi v0.33.0 | ||
github.com/gin-contrib/gzip v0.0.3 | ||
github.com/gin-contrib/static v0.0.0-20200916080430-d45d9a37d28e | ||
github.com/gin-gonic/gin v1.6.3 | ||
github.com/gin-gonic/gin v1.9.0 | ||
github.com/golang-jwt/jwt v3.2.2+incompatible | ||
github.com/gorilla/sessions v1.2.1 | ||
github.com/juliangruber/go-intersect v1.1.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/satori/go.uuid v1.2.0 | ||
github.com/shiningrush/droplet v0.2.6-0.20210127040147-53817015cd1b | ||
github.com/shiningrush/droplet/wrapper/gin v0.2.1 | ||
github.com/shiningrush/droplet v0.3.0 | ||
github.com/shiningrush/droplet/wrapper/gin v0.3.0 | ||
github.com/sony/sonyflake v1.0.0 | ||
github.com/spf13/cobra v1.6.1 | ||
github.com/spf13/viper v1.8.1 | ||
github.com/stretchr/testify v1.7.1 | ||
github.com/tidwall/gjson v1.6.7 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/tidwall/gjson v1.9.3 | ||
github.com/xeipuuv/gojsonschema v1.2.0 | ||
github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da | ||
go.etcd.io/etcd/client/pkg/v3 v3.5.5 | ||
go.etcd.io/etcd/client/v3 v3.5.5 | ||
go.uber.org/zap v1.17.0 | ||
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // indirect | ||
golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094 | ||
) | ||
|
||
require ( | ||
github.com/bytedance/sonic v1.8.0 // indirect | ||
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect | ||
github.com/coreos/go-semver v0.3.0 // indirect | ||
github.com/coreos/go-systemd/v22 v22.3.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/ghodss/yaml v1.0.0 // indirect | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/swag v0.19.5 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/go-playground/validator/v10 v10.11.2 // indirect | ||
github.com/goccy/go-json v0.10.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/gorilla/securecookie v1.1.1 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/klauspost/cpuid/v2 v2.0.9 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/pelletier/go-toml v1.9.3 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/pretty v1.2.0 // indirect | ||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||
github.com/ugorji/go/codec v1.2.9 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
go.etcd.io/etcd/api/v3 v3.5.5 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect | ||
golang.org/x/crypto v0.5.0 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90 // indirect | ||
google.golang.org/grpc v1.47.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/ini.v1 v1.62.0 // indirect | ||
gopkg.in/square/go-jose.v2 v2.6.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.