Implement OrderedMap container.

This commit is contained in:
Shawn Poulson
2023-08-03 10:13:49 -04:00
parent f95f6b48c6
commit f9dd682165
4 changed files with 602 additions and 3 deletions

8
go.mod
View File

@@ -3,16 +3,20 @@ module github.com/pb33f/libopenapi
go 1.20
require (
github.com/stretchr/testify v1.8.0
github.com/lucasjones/reggen v0.0.0-20200904144131-37ba4fa293bb
github.com/stretchr/testify v1.8.1
github.com/vmware-labs/yaml-jsonpath v0.3.2
github.com/wk8/go-ordered-map/v2 v2.1.8
golang.org/x/exp v0.0.0-20230811145659-89c5cff77bcb
golang.org/x/sync v0.1.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/bahlo/generic-list-go v0.2.0 // indirect
github.com/buger/jsonparser v1.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dprotaso/go-yit v0.0.0-20220510233725-9ba8df137936 // indirect
github.com/lucasjones/reggen v0.0.0-20200904144131-37ba4fa293bb // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
)