Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 23 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,30 +1,37 @@
module github.com/doomsday-project/doomsday

go 1.18
go 1.22

require (
code.cloudfoundry.org/credhub-cli v0.0.0-20191230184144-6e537b521d9d
github.com/cloudfoundry-community/vaultkv v0.1.1
github.com/gorilla/mux v1.7.3
github.com/olekukonko/tablewriter v0.0.4
github.com/pborman/uuid v1.2.0
code.cloudfoundry.org/credhub-cli v0.0.0-20240527130318-e567403de1b6
github.com/cloudfoundry-community/vaultkv v0.7.0
github.com/gorilla/mux v1.8.1
github.com/olekukonko/tablewriter v0.0.5
github.com/pborman/uuid v1.2.1
github.com/robfig/cron v1.2.0
github.com/starkandwayne/goutils v0.0.0-20190115202530-896b8a6904be
github.com/thomasmitchell/go-shout v0.0.0-20200117221442-ad6c1a8d1669
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
golang.org/x/crypto v0.23.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/yaml.v2 v2.3.0
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 // indirect
github.com/cloudfoundry/go-socks5 v0.0.0-20180221174514-54f73bdb8a8e // indirect
github.com/cloudfoundry/socks5-proxy v0.2.0 // indirect
github.com/google/uuid v1.0.0 // indirect
github.com/hashicorp/go-version v0.0.0-20171129150820-4fe82ae3040f // indirect
github.com/mattn/go-isatty v0.0.3 // indirect
github.com/mattn/go-runewidth v0.0.7 // indirect
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7 // indirect
golang.org/x/sys v0.0.0-20220614162138-6c1b26c55098 // indirect
github.com/cloudfoundry/socks5-proxy v0.2.117 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/cap v0.6.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-secure-stdlib/base62 v0.1.2 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/term v0.20.0 // indirect
)
Loading