-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (23 loc) · 799 Bytes
/
go.mod
File metadata and controls
26 lines (23 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module github.com/pb33f/libopenapi-validator
go 1.25.0
require (
github.com/basgys/goxml2json v1.1.1-0.20231018121955-e66ee54ceaad
github.com/dlclark/regexp2 v1.11.5
github.com/goccy/go-yaml v1.19.2
github.com/pb33f/jsonpath v0.7.1
github.com/pb33f/libopenapi v0.33.0
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
github.com/stretchr/testify v1.11.1
go.yaml.in/yaml/v4 v4.0.0-rc.4
golang.org/x/text v0.33.0
)
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/pb33f/ordered-map/v2 v2.3.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.48.0 // indirect
golang.org/x/sync v0.19.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)