go.mod
author Mikael Berthe <mikael@lilotux.net>
Sat, 29 Sep 2018 18:09:54 +0200
changeset 242 2a9ec03fe5a1
parent 239 605a00e9d1ab
child 246 0998f404dd31
permissions -rw-r--r--
Use vendoring for backward compatibility The switch of the Madon library to Go modules breaks builds with Go version < 1.11 since the import path now contains "v2". This patch adds vendoring so that it can still build with those versions. Let's try to re-enable Travis builds with Go v1.8-1.11...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
239
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
module github.com/McKael/madonctl
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     2
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
require (
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
	github.com/BurntSushi/toml v0.3.1 // indirect
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
	github.com/McKael/madon/v2 v2.3.1-0.20180929094633-c679abc985d6
242
2a9ec03fe5a1 Use vendoring for backward compatibility
Mikael Berthe <mikael@lilotux.net>
parents: 239
diff changeset
     6
	github.com/cpuguy83/go-md2man v1.0.9-0.20180619205630-691ee98543af // indirect
239
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
	github.com/ghodss/yaml v1.0.0
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     8
	github.com/inconshreveable/mousetrap v1.0.0 // indirect
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
	github.com/kr/pretty v0.1.0 // indirect
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
	github.com/kr/text v0.1.0
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
	github.com/mattn/go-isatty v0.0.4
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    12
	github.com/pkg/errors v0.8.0
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    13
	github.com/russross/blackfriday v2.0.0+incompatible // indirect
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    14
	github.com/shurcooL/sanitized_anchor_name v0.0.0-20170918181015-86672fcb3f95 // indirect
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    15
	github.com/spf13/cobra v0.0.3
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    16
	github.com/spf13/pflag v1.0.2
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    17
	github.com/spf13/viper v1.2.1
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    18
	github.com/stretchr/testify v1.2.2
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    19
	golang.org/x/net v0.0.0-20180926154720-4dfa2610cdf3
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    20
	golang.org/x/sys v0.0.0-20180928133829-e4b3c5e90611 // indirect
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    21
	gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
605a00e9d1ab Switch to Go modules (and bump Go version requirement)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    22
)