|
1 | 1 | module github.com/openziti/sdk-golang
|
2 | 2 |
|
3 |
| -go 1.16 |
| 3 | +go 1.17 |
4 | 4 |
|
5 | 5 | //replace github.com/openziti/foundation => ../foundation
|
6 | 6 |
|
7 | 7 | require (
|
8 | 8 | github.com/Jeffail/gabs v1.4.0
|
9 |
| - github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect |
10 |
| - github.com/cenkalti/backoff/v4 v4.1.1 |
11 |
| - github.com/deepmap/oapi-codegen v1.8.2 // indirect |
| 9 | + github.com/cenkalti/backoff/v4 v4.1.3 |
12 | 10 | github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa
|
13 |
| - github.com/go-ole/go-ole v1.2.5 // indirect |
14 | 11 | github.com/golang-jwt/jwt v3.2.2+incompatible
|
15 | 12 | github.com/google/uuid v1.3.0
|
16 |
| - github.com/influxdata/influxdb-client-go/v2 v2.4.0 |
17 |
| - github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097 // indirect |
18 |
| - github.com/michaelquigley/pfxlog v0.6.1 |
| 13 | + github.com/influxdata/influxdb-client-go/v2 v2.8.1 |
| 14 | + github.com/michaelquigley/pfxlog v0.6.9 |
19 | 15 | github.com/mitchellh/go-ps v1.0.0
|
20 |
| - github.com/mitchellh/mapstructure v1.4.2 |
| 16 | + github.com/mitchellh/mapstructure v1.4.3 |
21 | 17 | github.com/netfoundry/secretstream v0.1.2
|
22 |
| - github.com/openziti/foundation v0.15.76 |
| 18 | + github.com/openziti/channel v0.18.28 |
| 19 | + github.com/openziti/foundation v0.17.22 |
| 20 | + github.com/openziti/transport v0.1.5 |
23 | 21 | github.com/orcaman/concurrent-map v0.0.0-20190826125027-8c72a8bb44f6
|
24 | 22 | github.com/pkg/errors v0.9.1
|
25 | 23 | github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0
|
26 |
| - github.com/shirou/gopsutil v2.20.9+incompatible |
| 24 | + github.com/shirou/gopsutil v2.21.11+incompatible |
27 | 25 | github.com/sirupsen/logrus v1.8.1
|
28 |
| - github.com/spf13/cobra v1.2.1 |
29 |
| - github.com/stretchr/testify v1.7.0 |
| 26 | + github.com/spf13/cobra v1.4.0 |
| 27 | + github.com/stretchr/testify v1.7.1 |
30 | 28 | go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1
|
31 |
| - golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect |
32 |
| - golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 |
| 29 | + golang.org/x/sys v0.0.0-20220330033206-e17cdc41300f |
| 30 | +) |
| 31 | + |
| 32 | +require ( |
| 33 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 34 | + github.com/deepmap/oapi-codegen v1.8.2 // indirect |
| 35 | + github.com/emirpasic/gods v1.12.0 // indirect |
| 36 | + github.com/go-ole/go-ole v1.2.6 // indirect |
| 37 | + github.com/golang/protobuf v1.5.2 // indirect |
| 38 | + github.com/inconshreveable/mousetrap v1.0.0 // indirect |
| 39 | + github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d // indirect |
| 40 | + github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097 // indirect |
| 41 | + github.com/kr/text v0.2.0 // indirect |
| 42 | + github.com/mattn/go-colorable v0.1.12 // indirect |
| 43 | + github.com/mattn/go-isatty v0.0.14 // indirect |
| 44 | + github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect |
| 45 | + github.com/miekg/pkcs11 v1.1.1 // indirect |
| 46 | + github.com/parallaxsecond/parsec-client-go v0.0.0-20220111122524-cb78842db373 // indirect |
| 47 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 48 | + github.com/speps/go-hashids v2.0.0+incompatible // indirect |
| 49 | + github.com/spf13/pflag v1.0.5 // indirect |
| 50 | + github.com/tklauser/go-sysconf v0.3.9 // indirect |
| 51 | + github.com/tklauser/numcpus v0.3.0 // indirect |
| 52 | + github.com/yusufpapurcu/wmi v1.2.2 // indirect |
| 53 | + golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064 // indirect |
| 54 | + golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect |
| 55 | + golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect |
| 56 | + golang.org/x/text v0.3.7 // indirect |
| 57 | + google.golang.org/protobuf v1.28.0 // indirect |
| 58 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
| 59 | + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect |
33 | 60 | )
|
0 commit comments