-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
27 lines (24 loc) · 946 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
module github.com/TheJokersThief/cartographer-dsl
go 1.17
require (
github.com/alecthomas/kong v0.5.0
github.com/google/go-jsonnet v0.18.0
github.com/kkyr/fig v0.3.0
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.7.1
sigs.k8s.io/yaml v1.1.0
)
require (
github.com/alecthomas/repr v0.0.0-20220113201626-b1b626ac65ae // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pelletier/go-toml v1.9.3 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)