|
| 1 | +module github.com/TikTokTechImmersion/assignment_demo_2023/http-server |
| 2 | + |
| 3 | +go 1.18 |
| 4 | + |
| 5 | +require ( |
| 6 | + github.com/apache/thrift v0.13.0 |
| 7 | + github.com/cloudwego/hertz v0.6.1 |
| 8 | + github.com/cloudwego/kitex v0.5.2 |
| 9 | + github.com/kitex-contrib/registry-etcd v0.1.0 |
| 10 | + google.golang.org/protobuf v1.28.1 |
| 11 | +) |
| 12 | + |
| 13 | +require ( |
| 14 | + github.com/bytedance/go-tagexpr/v2 v2.9.2 // indirect |
| 15 | + github.com/bytedance/gopkg v0.0.0-20220817015305-b879a72dc90f // indirect |
| 16 | + github.com/bytedance/sonic v1.8.1 // indirect |
| 17 | + github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect |
| 18 | + github.com/chenzhuoyu/iasm v0.0.0-20230222070914-0b1b64b0e762 // indirect |
| 19 | + github.com/choleraehyq/pid v0.0.16 // indirect |
| 20 | + github.com/cloudwego/fastpb v0.0.4 // indirect |
| 21 | + github.com/cloudwego/frugal v0.1.6 // indirect |
| 22 | + github.com/cloudwego/netpoll v0.3.2 // indirect |
| 23 | + github.com/cloudwego/thriftgo v0.2.9 // indirect |
| 24 | + github.com/coreos/go-semver v0.3.0 // indirect |
| 25 | + github.com/coreos/go-systemd/v22 v22.3.2 // indirect |
| 26 | + github.com/fsnotify/fsnotify v1.5.4 // indirect |
| 27 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 28 | + github.com/golang/protobuf v1.5.2 // indirect |
| 29 | + github.com/google/pprof v0.0.0-20220608213341-c488b8fa1db3 // indirect |
| 30 | + github.com/henrylee2cn/ameda v1.4.10 // indirect |
| 31 | + github.com/henrylee2cn/goutil v0.0.0-20210127050712-89660552f6f8 // indirect |
| 32 | + github.com/jhump/protoreflect v1.8.2 // indirect |
| 33 | + github.com/json-iterator/go v1.1.12 // indirect |
| 34 | + github.com/klauspost/cpuid/v2 v2.2.4 // indirect |
| 35 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 36 | + github.com/modern-go/reflect2 v1.0.2 // indirect |
| 37 | + github.com/nyaruka/phonenumbers v1.0.55 // indirect |
| 38 | + github.com/oleiade/lane v1.0.1 // indirect |
| 39 | + github.com/sirupsen/logrus v1.8.1 // indirect |
| 40 | + github.com/smartystreets/goconvey v1.7.2 // indirect |
| 41 | + github.com/tidwall/gjson v1.13.0 // indirect |
| 42 | + github.com/tidwall/match v1.1.1 // indirect |
| 43 | + github.com/tidwall/pretty v1.2.0 // indirect |
| 44 | + github.com/twitchyliquid64/golang-asm v0.15.1 // indirect |
| 45 | + go.etcd.io/etcd/api/v3 v3.5.5 // indirect |
| 46 | + go.etcd.io/etcd/client/pkg/v3 v3.5.5 // indirect |
| 47 | + go.etcd.io/etcd/client/v3 v3.5.5 // indirect |
| 48 | + go.uber.org/atomic v1.8.0 // indirect |
| 49 | + go.uber.org/multierr v1.6.0 // indirect |
| 50 | + go.uber.org/zap v1.17.0 // indirect |
| 51 | + golang.org/x/arch v0.2.0 // indirect |
| 52 | + golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect |
| 53 | + golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect |
| 54 | + golang.org/x/sys v0.0.0-20220817070843-5a390386f1f2 // indirect |
| 55 | + golang.org/x/text v0.6.0 // indirect |
| 56 | + golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect |
| 57 | + google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect |
| 58 | + google.golang.org/grpc v1.41.0 // indirect |
| 59 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
| 60 | +) |
| 61 | + |
| 62 | +replace github.com/apache/thrift => github.com/apache/thrift v0.13.0 |
0 commit comments