|
1 | 1 | module github.com/go-micro/examples
|
2 | 2 |
|
3 |
| -go 1.17 |
4 |
| - |
5 |
| -replace ( |
6 |
| - github.com/asim/go-micro/plugins/client/grpc/v4 => ../plugins/client/grpc |
7 |
| - github.com/asim/go-micro/plugins/client/http/v4 => ../plugins/client/http |
8 |
| - github.com/asim/go-micro/plugins/config/encoder/toml/v4 => ../plugins/config/encoder/toml |
9 |
| - github.com/asim/go-micro/plugins/config/encoder/yaml/v4 => ../plugins/config/encoder/yaml |
10 |
| - github.com/asim/go-micro/plugins/config/source/grpc/v4 => ../plugins/config/source/grpc |
11 |
| - github.com/asim/go-micro/plugins/server/grpc/v4 => ../plugins/server/grpc |
12 |
| - github.com/asim/go-micro/plugins/server/http/v4 => ../plugins/server/http |
13 |
| - github.com/asim/go-micro/plugins/transport/grpc/v4 => ../plugins/transport/grpc |
14 |
| - github.com/asim/go-micro/plugins/wrapper/select/roundrobin/v4 => ../plugins/wrapper/select/roundrobin |
15 |
| - github.com/asim/go-micro/plugins/wrapper/select/shard/v4 => ../plugins/wrapper/select/shard |
16 |
| - go-micro.dev/v4 => ../../go-micro |
17 |
| -) |
| 3 | +go 1.18 |
18 | 4 |
|
19 | 5 | require (
|
20 |
| - github.com/asim/go-micro/plugins/client/grpc/v4 v4.0.0-20211019191242-9edc569e68bb |
21 |
| - github.com/asim/go-micro/plugins/client/http/v4 v4.0.0-00010101000000-000000000000 |
22 |
| - github.com/asim/go-micro/plugins/config/encoder/toml/v4 v4.0.0-00010101000000-000000000000 |
23 |
| - github.com/asim/go-micro/plugins/config/encoder/yaml/v4 v4.0.0-00010101000000-000000000000 |
24 |
| - github.com/asim/go-micro/plugins/config/source/grpc/v4 v4.0.0-00010101000000-000000000000 |
25 |
| - github.com/asim/go-micro/plugins/server/grpc/v4 v4.0.0-00010101000000-000000000000 |
26 |
| - github.com/asim/go-micro/plugins/server/http/v4 v4.0.0-00010101000000-000000000000 |
27 |
| - github.com/asim/go-micro/plugins/wrapper/select/roundrobin/v4 v4.0.0-00010101000000-000000000000 |
28 |
| - github.com/asim/go-micro/plugins/wrapper/select/shard/v4 v4.0.0-00010101000000-000000000000 |
29 |
| - github.com/gin-gonic/gin v1.7.4 |
| 6 | + github.com/gin-gonic/gin v1.8.1 |
| 7 | + github.com/go-micro/plugins/v4/broker/nats v1.1.0 |
| 8 | + github.com/go-micro/plugins/v4/client/grpc v1.1.0 |
| 9 | + github.com/go-micro/plugins/v4/client/http v1.1.0 |
| 10 | + github.com/go-micro/plugins/v4/config/encoder/toml v1.1.0 |
| 11 | + github.com/go-micro/plugins/v4/config/encoder/yaml v1.1.0 |
| 12 | + github.com/go-micro/plugins/v4/config/source/grpc v1.1.0 |
| 13 | + github.com/go-micro/plugins/v4/server/grpc v1.1.1 |
| 14 | + github.com/go-micro/plugins/v4/server/http v1.1.0 |
| 15 | + github.com/go-micro/plugins/v4/wrapper/select/roundrobin v1.1.0 |
| 16 | + github.com/go-micro/plugins/v4/wrapper/select/shard v1.1.0 |
30 | 17 | github.com/golang/glog v1.0.0
|
31 | 18 | github.com/golang/protobuf v1.5.2
|
32 | 19 | github.com/grpc-ecosystem/grpc-gateway v1.16.0
|
33 | 20 | github.com/pborman/uuid v1.2.1
|
34 |
| - github.com/urfave/cli/v2 v2.3.0 |
35 |
| - go-micro.dev/v4 v4.3.0 |
36 |
| - golang.org/x/net v0.0.0-20211020060615-d418f374d309 |
37 |
| - google.golang.org/genproto v0.0.0-20211021150943-2b146023228c |
38 |
| - google.golang.org/grpc v1.42.0 |
39 |
| - google.golang.org/protobuf v1.27.1 |
| 21 | + github.com/urfave/cli/v2 v2.11.2 |
| 22 | + go-micro.dev/v4 v4.8.1 |
| 23 | + golang.org/x/net v0.0.0-20220812174116-3211cb980234 |
| 24 | + google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1 |
| 25 | + google.golang.org/grpc v1.48.0 |
| 26 | + google.golang.org/protobuf v1.28.1 |
40 | 27 | )
|
41 | 28 |
|
42 | 29 | require (
|
43 |
| - github.com/BurntSushi/toml v0.3.1 // indirect |
44 |
| - github.com/Microsoft/go-winio v0.5.0 // indirect |
45 |
| - github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect |
| 30 | + github.com/BurntSushi/toml v1.2.0 // indirect |
| 31 | + github.com/Microsoft/go-winio v0.5.2 // indirect |
| 32 | + github.com/ProtonMail/go-crypto v0.0.0-20220812175011-7fcef0dbe794 // indirect |
46 | 33 | github.com/acomagu/bufpipe v1.0.3 // indirect
|
47 | 34 | github.com/bitly/go-simplejson v0.5.0 // indirect
|
48 |
| - github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect |
49 |
| - github.com/emirpasic/gods v1.12.0 // indirect |
50 |
| - github.com/fsnotify/fsnotify v1.4.9 // indirect |
| 35 | + github.com/cloudflare/circl v1.2.0 // indirect |
| 36 | + github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect |
| 37 | + github.com/emirpasic/gods v1.18.1 // indirect |
| 38 | + github.com/evanphx/json-patch/v5 v5.6.0 // indirect |
| 39 | + github.com/felixge/httpsnoop v1.0.3 // indirect |
| 40 | + github.com/fsnotify/fsnotify v1.5.4 // indirect |
51 | 41 | github.com/ghodss/yaml v1.0.0 // indirect
|
52 | 42 | github.com/gin-contrib/sse v0.1.0 // indirect
|
| 43 | + github.com/go-acme/lego/v4 v4.8.0 // indirect |
53 | 44 | github.com/go-git/gcfg v1.5.0 // indirect
|
54 | 45 | github.com/go-git/go-billy/v5 v5.3.1 // indirect
|
55 | 46 | github.com/go-git/go-git/v5 v5.4.2 // indirect
|
56 |
| - github.com/go-playground/locales v0.13.0 // indirect |
57 |
| - github.com/go-playground/universal-translator v0.17.0 // indirect |
58 |
| - github.com/go-playground/validator/v10 v10.4.1 // indirect |
59 |
| - github.com/google/uuid v1.2.0 // indirect |
60 |
| - github.com/imdario/mergo v0.3.12 // indirect |
| 47 | + github.com/go-playground/locales v0.14.0 // indirect |
| 48 | + github.com/go-playground/universal-translator v0.18.0 // indirect |
| 49 | + github.com/go-playground/validator/v10 v10.11.0 // indirect |
| 50 | + github.com/gobwas/httphead v0.1.0 // indirect |
| 51 | + github.com/gobwas/pool v0.2.1 // indirect |
| 52 | + github.com/gobwas/ws v1.1.0 // indirect |
| 53 | + github.com/goccy/go-json v0.9.11 // indirect |
| 54 | + github.com/google/uuid v1.3.0 // indirect |
| 55 | + github.com/gorilla/handlers v1.5.1 // indirect |
| 56 | + github.com/imdario/mergo v0.3.13 // indirect |
61 | 57 | github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
|
62 |
| - github.com/json-iterator/go v1.1.9 // indirect |
63 |
| - github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect |
64 |
| - github.com/leodido/go-urn v1.2.0 // indirect |
65 |
| - github.com/mattn/go-isatty v0.0.12 // indirect |
66 |
| - github.com/miekg/dns v1.1.43 // indirect |
| 58 | + github.com/json-iterator/go v1.1.12 // indirect |
| 59 | + github.com/kevinburke/ssh_config v1.2.0 // indirect |
| 60 | + github.com/leodido/go-urn v1.2.1 // indirect |
| 61 | + github.com/mattn/go-isatty v0.0.16 // indirect |
| 62 | + github.com/miekg/dns v1.1.50 // indirect |
67 | 63 | github.com/mitchellh/go-homedir v1.1.0 // indirect
|
68 | 64 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
69 |
| - github.com/modern-go/reflect2 v1.0.1 // indirect |
| 65 | + github.com/modern-go/reflect2 v1.0.2 // indirect |
| 66 | + github.com/nats-io/nats.go v1.16.0 // indirect |
| 67 | + github.com/nats-io/nkeys v0.3.0 // indirect |
| 68 | + github.com/nats-io/nuid v1.0.1 // indirect |
70 | 69 | github.com/nxadm/tail v1.4.8 // indirect
|
71 | 70 | github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
|
72 | 71 | github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
|
| 72 | + github.com/pelletier/go-toml/v2 v2.0.3 // indirect |
73 | 73 | github.com/pkg/errors v0.9.1 // indirect
|
74 |
| - github.com/russross/blackfriday/v2 v2.0.1 // indirect |
75 |
| - github.com/sergi/go-diff v1.1.0 // indirect |
| 74 | + github.com/russross/blackfriday/v2 v2.1.0 // indirect |
| 75 | + github.com/sergi/go-diff v1.2.0 // indirect |
76 | 76 | github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
|
77 |
| - github.com/ugorji/go/codec v1.1.7 // indirect |
78 |
| - github.com/xanzy/ssh-agent v0.3.0 // indirect |
79 |
| - golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect |
80 |
| - golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect |
81 |
| - golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect |
82 |
| - golang.org/x/text v0.3.6 // indirect |
| 77 | + github.com/ugorji/go/codec v1.2.7 // indirect |
| 78 | + github.com/xanzy/ssh-agent v0.3.1 // indirect |
| 79 | + github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect |
| 80 | + golang.org/x/crypto v0.0.0-20220817201139-bc19a97f63c8 // indirect |
| 81 | + golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect |
| 82 | + golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect |
| 83 | + golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 // indirect |
| 84 | + golang.org/x/text v0.3.7 // indirect |
| 85 | + golang.org/x/tools v0.1.12 // indirect |
| 86 | + golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect |
83 | 87 | gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
84 | 88 | gopkg.in/warnings.v0 v0.1.2 // indirect
|
85 | 89 | gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
0 commit comments