2023-06-11 00:32:02 +00:00
|
|
|
module gosimplenpm
|
|
|
|
|
|
|
|
go 1.20
|
|
|
|
|
2023-06-17 22:41:07 +00:00
|
|
|
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
|
2023-06-17 22:41:07 +00:00
|
|
|
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
|
|
|
)
|