-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #251 from wtsi-npg/devel
Merge to master for release 2.0.0
- Loading branch information
Showing
13 changed files
with
205 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,41 @@ | ||
module github.com/wtsi-npg/valet | ||
|
||
go 1.17 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/klauspost/pgzip v1.2.5 | ||
github.com/onsi/ginkgo/v2 v2.1.4 | ||
github.com/onsi/gomega v1.19.0 | ||
github.com/klauspost/pgzip v1.2.6 | ||
github.com/onsi/ginkgo/v2 v2.17.2 | ||
github.com/onsi/gomega v1.33.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rs/zerolog v1.26.1 | ||
github.com/spf13/cobra v1.4.0 | ||
github.com/stretchr/testify v1.7.1 | ||
github.com/wtsi-npg/extendo/v2 v2.4.0 | ||
github.com/rs/zerolog v1.32.0 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/wtsi-npg/extendo/v2 v2.6.1 | ||
github.com/wtsi-npg/fsnotify v1.4.8-0.20190705153444-45ca73e9793a | ||
github.com/wtsi-npg/logshim v1.3.0 | ||
github.com/wtsi-npg/logshim-zerolog v1.3.0 | ||
golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898 | ||
github.com/wtsi-npg/logshim v1.4.0 | ||
github.com/wtsi-npg/logshim-zerolog v1.4.0 | ||
golang.org/x/crypto v0.22.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/klauspost/compress v1.15.4 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/net v0.0.0-20220517181318-183a9ca12b87 // indirect | ||
golang.org/x/sys v0.0.0-20220517195934-5e4e11fc645e // indirect | ||
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20220512140231-539c8e751b99 // indirect | ||
golang.org/x/net v0.24.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/term v0.19.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.20.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
// replace github.com/wtsi-npg/extendo/v2 => ../extendo |
Oops, something went wrong.