63 lines
2.5 KiB
Modula-2
63 lines
2.5 KiB
Modula-2
module environmentCaptureAgent
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
git.hpds.cc/Component/logging v0.0.0-20230106105738-e378e873921b
|
|
git.hpds.cc/pavement/hpds_node v0.0.0-20230405153516-9403c4d01e12
|
|
github.com/Erope/goss v0.0.0-20211230093305-df3c03fd1ed4
|
|
github.com/shirou/gopsutil/v3 v3.23.1
|
|
github.com/spf13/cobra v1.6.1
|
|
github.com/spf13/viper v1.15.0
|
|
go.uber.org/zap v1.23.0
|
|
)
|
|
|
|
require (
|
|
git.hpds.cc/Component/mq_coder v0.0.0-20221010064749-174ae7ae3340 // indirect
|
|
git.hpds.cc/Component/network v0.0.0-20230405135741-a4ea724bab76 // indirect
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
|
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
|
|
github.com/golang/mock v1.6.0 // indirect
|
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/matoous/go-nanoid/v2 v2.0.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/onsi/ginkgo/v2 v2.2.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
|
github.com/quic-go/qtls-go1-19 v0.2.1 // indirect
|
|
github.com/quic-go/qtls-go1-20 v0.1.1 // indirect
|
|
github.com/quic-go/quic-go v0.33.0 // indirect
|
|
github.com/spf13/afero v1.9.3 // indirect
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.4.2 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.11 // indirect
|
|
github.com/tklauser/numcpus v0.6.0 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.2 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/multierr v1.8.0 // indirect
|
|
golang.org/x/crypto v0.4.0 // indirect
|
|
golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect
|
|
golang.org/x/mod v0.6.0 // indirect
|
|
golang.org/x/net v0.4.0 // indirect
|
|
golang.org/x/sys v0.4.0 // indirect
|
|
golang.org/x/text v0.5.0 // indirect
|
|
golang.org/x/tools v0.2.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
//
|
|
//replace (
|
|
// git.hpds.cc/Component/network => ../network
|
|
// git.hpds.cc/pavement/hpds_node => ../hpds_node
|
|
//)
|