-
Notifications
You must be signed in to change notification settings - Fork 3
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
3 changed files
with
44 additions
and
11 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,34 +1,67 @@ | ||
module github.com/siemens/link-checker-service | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/appleboy/gin-jwt/v2 v2.9.0 | ||
github.com/darren/gpac v0.0.0-20210609082804-b56d6523a3af | ||
github.com/dgraph-io/ristretto v0.1.0 | ||
github.com/dop251/goja v0.0.0-20220927172339-ea66e911853d // indirect | ||
github.com/gin-contrib/cors v1.4.0 | ||
github.com/gin-gonic/gin v1.8.1 | ||
github.com/go-playground/validator/v10 v10.11.1 // indirect | ||
github.com/go-resty/resty/v2 v2.7.0 | ||
github.com/gobwas/glob v0.2.3 | ||
github.com/goccy/go-json v0.9.11 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible | ||
github.com/golang/glog v1.0.0 // indirect | ||
github.com/google/uuid v1.3.0 | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/patrickmn/go-cache v2.1.0+incompatible | ||
github.com/platinummonkey/go-concurrency-limits v0.7.0 | ||
github.com/spf13/afero v1.9.2 // indirect | ||
github.com/spf13/cobra v1.5.0 | ||
github.com/spf13/viper v1.13.0 | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/ulule/limiter/v3 v3.10.0 | ||
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af | ||
) | ||
|
||
require ( | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dlclark/regexp2 v1.7.0 // indirect | ||
github.com/dop251/goja v0.0.0-20220927172339-ea66e911853d // indirect | ||
github.com/dustin/go-humanize v1.0.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/go-playground/locales v0.14.0 // indirect | ||
github.com/go-playground/universal-translator v0.18.0 // indirect | ||
github.com/go-playground/validator/v10 v10.11.1 // indirect | ||
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect | ||
github.com/goccy/go-json v0.9.11 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect | ||
github.com/golang/glog v1.0.0 // 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/leodido/go-urn v1.2.1 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // 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.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.5 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.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/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.4.1 // indirect | ||
github.com/ugorji/go/codec v1.2.7 // indirect | ||
golang.org/x/crypto v0.0.0-20220926161630-eccd6366d1be // indirect | ||
golang.org/x/net v0.0.0-20220927171203-f486391704dc // indirect | ||
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect | ||
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/protobuf v1.28.1 // 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 | ||
) |
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,3 +1,3 @@ | ||
module github.com/siemens/link-checker-service/test/jquery_example | ||
|
||
go 1.16 | ||
go 1.19 |
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