-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathgo.mod
More file actions
37 lines (32 loc) · 1.34 KB
/
go.mod
File metadata and controls
37 lines (32 loc) · 1.34 KB
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
27
28
29
30
31
32
33
34
35
36
37
module github.com/go-openapi/swag
retract v0.24.0 // bad tagging of the main module: superseeded by v0.24.1
require (
github.com/go-openapi/swag/cmdutils v0.26.0
github.com/go-openapi/swag/conv v0.26.0
github.com/go-openapi/swag/fileutils v0.26.0
github.com/go-openapi/swag/jsonname v0.26.0
github.com/go-openapi/swag/jsonutils v0.26.0
github.com/go-openapi/swag/loading v0.26.0
github.com/go-openapi/swag/mangling v0.26.0
github.com/go-openapi/swag/netutils v0.26.0
github.com/go-openapi/swag/stringutils v0.26.0
github.com/go-openapi/swag/typeutils v0.26.0
github.com/go-openapi/swag/yamlutils v0.26.0
github.com/go-openapi/testify/v2 v2.4.2
)
require go.yaml.in/yaml/v3 v3.0.4 // indirect
replace (
github.com/go-openapi/swag/cmdutils => ./cmdutils
github.com/go-openapi/swag/conv => ./conv
github.com/go-openapi/swag/fileutils => ./fileutils
github.com/go-openapi/swag/jsonname => ./jsonname
github.com/go-openapi/swag/jsonutils => ./jsonutils
github.com/go-openapi/swag/jsonutils/fixtures_test => ./jsonutils/fixtures_test
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/stringutils => ./stringutils
github.com/go-openapi/swag/typeutils => ./typeutils
github.com/go-openapi/swag/yamlutils => ./yamlutils
)
go 1.25.0