gosimplenpm/go.mod

22 lines
513 B
Modula-2
Raw Normal View History

module gosimplenpm
go 1.20
require (
github.com/gorilla/mux v1.8.0
github.com/sirupsen/logrus v1.9.3
2023-06-30 19:06:46 +00:00
github.com/spf13/cobra v1.7.0
2023-12-25 08:56:48 +00:00
github.com/stretchr/testify v1.7.0
2023-06-30 19:06:46 +00:00
golang.org/x/crypto v0.10.0
golang.org/x/mod v0.11.0
)
2023-06-30 19:06:46 +00:00
require (
2023-12-25 08:56:48 +00:00
github.com/davecgh/go-spew v1.1.1 // indirect
2023-06-30 19:06:46 +00:00
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2023-12-25 08:56:48 +00:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2023-06-30 19:06:46 +00:00
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.9.0 // indirect
2023-12-25 08:56:48 +00:00
gopkg.in/yaml.v3 v3.0.1 // indirect
2023-06-30 19:06:46 +00:00
)