diff --git a/go.mod b/go.mod index a9635bd..64d712c 100644 --- a/go.mod +++ b/go.mod @@ -17,7 +17,10 @@ require ( github.com/go-openapi/testify/v2 v2.6.0 ) -require go.yaml.in/yaml/v3 v3.0.4 // indirect +require ( + github.com/go-openapi/swag/pools v0.27.0 // indirect + go.yaml.in/yaml/v3 v3.0.4 // indirect +) replace ( github.com/go-openapi/swag/cmdutils => ./cmdutils @@ -29,6 +32,7 @@ replace ( github.com/go-openapi/swag/loading => ./loading github.com/go-openapi/swag/mangling => ./mangling github.com/go-openapi/swag/netutils => ./netutils + github.com/go-openapi/swag/pools => ./pools github.com/go-openapi/swag/stringutils => ./stringutils github.com/go-openapi/swag/typeutils => ./typeutils github.com/go-openapi/swag/yamlutils => ./yamlutils diff --git a/jsonutils/adapters/testintegration/go.mod b/jsonutils/adapters/testintegration/go.mod index c8b26ef..cec449e 100644 --- a/jsonutils/adapters/testintegration/go.mod +++ b/jsonutils/adapters/testintegration/go.mod @@ -10,6 +10,7 @@ require ( require ( github.com/go-openapi/swag/conv v0.27.0 // indirect + github.com/go-openapi/swag/pools v0.27.0 // indirect github.com/go-openapi/swag/typeutils v0.27.0 // indirect github.com/go-openapi/testify/enable/yaml/v2 v2.6.0 // indirect github.com/josharian/intern v1.0.0 // indirect @@ -21,6 +22,7 @@ replace ( github.com/go-openapi/swag/jsonutils => ../../../jsonutils github.com/go-openapi/swag/jsonutils/adapters/easyjson => ../easyjson github.com/go-openapi/swag/jsonutils/fixtures_test => ../../fixtures_test + github.com/go-openapi/swag/pools => ../../../pools github.com/go-openapi/swag/typeutils => ../../../typeutils )