-
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
40 additions
and
10 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,32 +1,63 @@ | ||
module github.com/JulesMike/spoty | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 | ||
github.com/cenkalti/dominantcolor v0.0.0-20171020061837-df772e8dd39e | ||
github.com/dgraph-io/ristretto v0.0.3 | ||
github.com/gin-gonic/gin v1.6.3 | ||
github.com/go-openapi/spec v0.20.3 // indirect | ||
github.com/go-playground/validator/v10 v10.4.1 // indirect | ||
github.com/golang/protobuf v1.5.1 // indirect | ||
github.com/google/uuid v1.2.0 | ||
github.com/iancoleman/strcase v0.1.3 | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/imdario/mergo v0.3.12 | ||
github.com/json-iterator/go v1.1.10 | ||
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/magefile/mage v1.11.0 | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect | ||
github.com/swaggo/gin-swagger v1.3.0 | ||
github.com/swaggo/swag v1.7.0 | ||
github.com/ugorji/go v1.2.4 // indirect | ||
github.com/zmb3/spotify v1.1.1 | ||
go.uber.org/fx v1.13.1 | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/KyleBanks/depth v1.2.1 // indirect | ||
github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.19.5 // indirect | ||
github.com/go-openapi/spec v0.20.3 // indirect | ||
github.com/go-openapi/swag v0.19.14 // indirect | ||
github.com/go-playground/locales v0.13.0 // indirect | ||
github.com/go-playground/universal-translator v0.17.0 // indirect | ||
github.com/go-playground/validator/v10 v10.4.1 // indirect | ||
github.com/golang/protobuf v1.5.1 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect | ||
github.com/ugorji/go/codec v1.2.4 // indirect | ||
go.uber.org/atomic v1.5.0 // indirect | ||
go.uber.org/dig v1.10.0 // indirect | ||
go.uber.org/multierr v1.4.0 // indirect | ||
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect | ||
golang.org/x/crypto v0.0.0-20210317152858-513c2a44f670 // indirect | ||
golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect | ||
golang.org/x/mod v0.3.0 // indirect | ||
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4 // indirect | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect | ||
golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 // indirect | ||
golang.org/x/text v0.3.5 // indirect | ||
golang.org/x/tools v0.1.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/appengine v1.4.0 // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
honnef.co/go/tools v0.0.1-2019.2.3 // 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