-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
28 lines (23 loc) · 871 Bytes
/
go.mod
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
module github.com/RaftechNL/go-yaml-merger
go 1.19
replace github.com/RaftechNL/go-yaml-merger => /Users/rafpe/raftech/github/raftechnl/go-yaml-merger
require (
github.com/labstack/gommon v0.4.0
github.com/stretchr/testify v1.8.1
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
)
require (
github.com/mattn/go-colorable v0.1.11 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/urfave/cli/v2 v2.24.3
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b // indirect
gopkg.in/yaml.v3 v3.0.1
)