forked from Danile71/inventory-bmc-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
60 lines (53 loc) · 2.51 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
module github.com/foliagecp/inventory-bmc-app
go 1.19
replace git.fg-tech.ru/listware/proto => github.com/foliagecp/proto v0.1.6
replace git.fg-tech.ru/listware/cmdb => github.com/foliagecp/cmdb v0.1.5
replace git.fg-tech.ru/listware/go-core => github.com/foliagecp/go-core v0.1.6
replace github.com/stmcginnis/gofish => github.com/Danile71/gofish v0.13.7
require (
git.fg-tech.ru/listware/cmdb v0.1.5
git.fg-tech.ru/listware/go-core v0.1.6
git.fg-tech.ru/listware/proto v0.1.6
github.com/hashicorp/go-multierror v1.1.1
github.com/koron/go-ssdp v0.0.3
github.com/manifoldco/promptui v0.9.0
github.com/sirupsen/logrus v1.9.0
github.com/stmcginnis/gofish v0.0.0-00010101000000-000000000000
github.com/urfave/cli/v2 v2.24.3
go.uber.org/goleak v1.2.0
)
require (
github.com/Shopify/sarama v1.38.1 // indirect
github.com/apache/flink-statefun/statefun-sdk-go/v3 v3.2.0 // indirect
github.com/arangodb/go-driver v1.4.1 // indirect
github.com/arangodb/go-velocypack v0.0.0-20200318135517-5af53c29c67e // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/eapache/go-resiliency v1.3.0 // indirect
github.com/eapache/go-xerial-snappy v0.0.0-20230111030713-bf00bc1b83b6 // indirect
github.com/eapache/queue v1.1.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
github.com/jcmturner/gofork v1.7.6 // indirect
github.com/jcmturner/gokrb5/v8 v8.4.3 // indirect
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
github.com/klauspost/compress v1.15.14 // indirect
github.com/pierrec/lz4/v4 v4.1.17 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
golang.org/x/net v0.5.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6 // indirect
google.golang.org/grpc v1.52.1 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)