|
1 | 1 | module github.com/cego/nebula-provisioner |
2 | 2 |
|
3 | | -go 1.23 |
4 | | - |
5 | | -toolchain go1.23.2 |
| 3 | +go 1.25.4 |
6 | 4 |
|
7 | 5 | require ( |
8 | | - github.com/99designs/gqlgen v0.17.55 |
| 6 | + github.com/99designs/gqlgen v0.17.84 |
9 | 7 | github.com/dgraph-io/badger/v3 v3.2103.5 |
10 | 8 | github.com/gorilla/mux v1.8.1 |
11 | 9 | github.com/gorilla/sessions v1.4.0 |
12 | | - github.com/hashicorp/vault v1.14.0 |
13 | | - github.com/jackpal/gateway v1.0.15 |
| 10 | + github.com/jackpal/gateway v1.1.1 |
14 | 11 | github.com/jackpal/go-nat-pmp v1.0.2 |
15 | 12 | github.com/lafriks/go-spaproxy v0.2.0 |
16 | 13 | github.com/mitchellh/go-ps v1.0.0 |
| 14 | + github.com/openbao/openbao/sdk/v2 v2.5.0 |
17 | 15 | github.com/pkg/errors v0.9.1 |
18 | 16 | github.com/sirupsen/logrus v1.9.3 |
19 | | - github.com/slackhq/nebula v1.9.4 |
20 | | - github.com/spf13/cobra v1.8.1 |
21 | | - github.com/vektah/gqlparser/v2 v2.5.18 |
22 | | - golang.org/x/crypto v0.28.0 |
23 | | - golang.org/x/oauth2 v0.23.0 |
24 | | - golang.org/x/tools v0.26.0 |
25 | | - google.golang.org/grpc v1.67.1 |
26 | | - google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.5.1 |
27 | | - google.golang.org/protobuf v1.35.1 |
| 17 | + github.com/slackhq/nebula v1.9.7 |
| 18 | + github.com/spf13/cobra v1.10.1 |
| 19 | + github.com/vektah/gqlparser/v2 v2.5.31 |
| 20 | + golang.org/x/crypto v0.45.0 |
| 21 | + golang.org/x/oauth2 v0.33.0 |
| 22 | + golang.org/x/tools v0.39.0 |
| 23 | + google.golang.org/grpc v1.77.0 |
| 24 | + google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.6.0 |
| 25 | + google.golang.org/protobuf v1.36.10 |
28 | 26 | gopkg.in/yaml.v3 v3.0.1 |
29 | 27 | ) |
30 | 28 |
|
31 | 29 | require ( |
32 | 30 | dario.cat/mergo v1.0.1 // indirect |
33 | | - github.com/agnivade/levenshtein v1.2.0 // indirect |
| 31 | + github.com/agnivade/levenshtein v1.2.1 // indirect |
34 | 32 | github.com/cespare/xxhash v1.1.0 // indirect |
35 | 33 | github.com/cespare/xxhash/v2 v2.3.0 // indirect |
36 | | - github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect |
37 | 34 | github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect |
38 | 35 | github.com/dgraph-io/ristretto v0.2.0 // indirect |
39 | 36 | github.com/dustin/go-humanize v1.0.1 // indirect |
| 37 | + github.com/go-viper/mapstructure/v2 v2.4.0 // indirect |
| 38 | + github.com/goccy/go-yaml v1.18.0 // indirect |
40 | 39 | github.com/gogo/protobuf v1.3.2 // indirect |
41 | 40 | github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
42 | | - github.com/golang/protobuf v1.5.3 // indirect |
| 41 | + github.com/golang/protobuf v1.5.4 // indirect |
43 | 42 | github.com/golang/snappy v0.0.4 // indirect |
44 | 43 | github.com/google/flatbuffers v24.3.25+incompatible // indirect |
45 | 44 | github.com/google/uuid v1.6.0 // indirect |
46 | 45 | github.com/gorilla/securecookie v1.1.2 // indirect |
47 | 46 | github.com/gorilla/websocket v1.5.3 // indirect |
48 | 47 | github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect |
49 | 48 | github.com/inconshreveable/mousetrap v1.1.0 // indirect |
50 | | - github.com/klauspost/compress v1.17.11 // indirect |
51 | | - github.com/mitchellh/mapstructure v1.5.0 // indirect |
| 49 | + github.com/klauspost/compress v1.18.1 // indirect |
| 50 | + github.com/kr/pretty v0.3.1 // indirect |
52 | 51 | github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect |
53 | | - github.com/russross/blackfriday/v2 v2.1.0 // indirect |
| 52 | + github.com/rogpeppe/go-internal v1.10.0 // indirect |
54 | 53 | github.com/sosodev/duration v1.3.1 // indirect |
55 | | - github.com/spf13/pflag v1.0.5 // indirect |
| 54 | + github.com/spf13/pflag v1.0.9 // indirect |
56 | 55 | github.com/stretchr/objx v0.5.2 // indirect |
57 | | - github.com/stretchr/testify v1.9.0 // indirect |
58 | | - github.com/urfave/cli/v2 v2.27.5 // indirect |
59 | | - github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect |
| 56 | + github.com/stretchr/testify v1.11.1 // indirect |
| 57 | + github.com/urfave/cli/v3 v3.6.1 // indirect |
60 | 58 | go.opencensus.io v0.24.0 // indirect |
61 | | - golang.org/x/mod v0.21.0 // indirect |
62 | | - golang.org/x/net v0.30.0 // indirect |
63 | | - golang.org/x/sync v0.8.0 // indirect |
64 | | - golang.org/x/sys v0.26.0 // indirect |
65 | | - golang.org/x/term v0.25.0 // indirect |
66 | | - golang.org/x/text v0.19.0 // indirect |
67 | | - google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 // indirect |
| 59 | + golang.org/x/mod v0.30.0 // indirect |
| 60 | + golang.org/x/net v0.47.0 // indirect |
| 61 | + golang.org/x/sync v0.18.0 // indirect |
| 62 | + golang.org/x/sys v0.38.0 // indirect |
| 63 | + golang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54 // indirect |
| 64 | + golang.org/x/term v0.37.0 // indirect |
| 65 | + golang.org/x/text v0.31.0 // indirect |
| 66 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda // indirect |
68 | 67 | gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect |
69 | 68 | gopkg.in/yaml.v2 v2.4.0 // indirect |
70 | 69 | ) |
0 commit comments