-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgo.mod
74 lines (53 loc) · 2.55 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
module github.com/couchbase/gometa
go 1.21.8
replace github.com/couchbase/bhive => ../bhive
replace github.com/couchbase/cbft => ../../../../../cbft
replace github.com/couchbase/cbgt => ../../../../../cbgt
replace github.com/couchbase/cbauth => ../cbauth
replace github.com/couchbase/eventing-ee => ../eventing-ee
replace github.com/couchbase/gomemcached => ../gomemcached
replace github.com/couchbase/gometa => ../gometa
replace github.com/couchbase/goutils => ../goutils
replace github.com/couchbase/go-couchbase => ../go-couchbase
replace github.com/couchbase/go_json => ../go_json
replace github.com/couchbase/hebrew => ../../../../../hebrew
replace github.com/couchbase/n1fty => ../n1fty
replace github.com/couchbase/nitro => ../nitro
replace github.com/couchbase/plasma => ../plasma
replace github.com/couchbase/query => ../query
replace github.com/couchbase/query-ee => ../query-ee
replace github.com/couchbase/regulator => ../regulator
replace github.com/couchbase/indexing => ../indexing
require (
github.com/couchbase/indexing v0.0.0-20220923223016-071e9308c875
github.com/golang/protobuf v1.5.3
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/couchbase/cbauth v0.1.12 // indirect
github.com/couchbase/clog v0.1.0 // indirect
github.com/couchbase/go-couchbase v0.1.1 // indirect
github.com/couchbase/go_json v0.0.0-20220330123059-4473a21887c8 // indirect
github.com/couchbase/gocb/v2 v2.5.4 // indirect
github.com/couchbase/gocbcore/v10 v10.2.10 // indirect
github.com/couchbase/gocbcore/v9 v9.1.8 // indirect
github.com/couchbase/gomemcached v0.2.2-0.20230407174933-7d7ce13da8cc // indirect
github.com/couchbase/goutils v0.1.2 // indirect
github.com/couchbase/logstats v1.0.0 // indirect
github.com/couchbase/query v0.0.0-00010101000000-000000000000 // indirect
github.com/couchbase/regulator v0.0.0-00010101000000-000000000000 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_golang v1.13.0 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
golang.org/x/crypto v0.19.0 // indirect
golang.org/x/sys v0.23.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)