Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
vulcain/go.mod
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
36 lines (33 sloc)
1.16 KB
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
module github.com/dunglas/vulcain | |
go 1.19 | |
require ( | |
github.com/dunglas/httpsfv v1.0.1 | |
github.com/getkin/kin-openapi v0.112.0 | |
github.com/gofrs/uuid v4.3.1+incompatible | |
github.com/gorilla/handlers v1.5.1 | |
github.com/joho/godotenv v1.3.0 | |
github.com/stretchr/testify v1.8.1 | |
github.com/tidwall/gjson v1.14.4 | |
github.com/tidwall/sjson v1.1.7 | |
go.uber.org/zap v1.24.0 | |
golang.org/x/crypto v0.5.0 | |
golang.org/x/net v0.5.0 | |
) | |
require ( | |
github.com/davecgh/go-spew v1.1.1 // indirect | |
github.com/felixge/httpsnoop v1.0.3 // indirect | |
github.com/go-openapi/jsonpointer v0.19.6 // indirect | |
github.com/go-openapi/swag v0.22.3 // indirect | |
github.com/invopop/yaml v0.2.0 // indirect | |
github.com/josharian/intern v1.0.0 // indirect | |
github.com/mailru/easyjson v0.7.7 // indirect | |
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | |
github.com/pkg/errors v0.9.1 // indirect | |
github.com/pmezard/go-difflib v1.0.0 // indirect | |
github.com/tidwall/match v1.1.1 // indirect | |
github.com/tidwall/pretty v1.2.1 // indirect | |
go.uber.org/atomic v1.10.0 // indirect | |
go.uber.org/multierr v1.9.0 // indirect | |
golang.org/x/text v0.6.0 // indirect | |
gopkg.in/yaml.v3 v3.0.1 // indirect | |
) |