|
| 1 | +module github.com/uber/cadence/samples/hello-world |
| 2 | + |
| 3 | +go 1.25.2 |
| 4 | + |
| 5 | +require ( |
| 6 | + go.uber.org/cadence v1.3.0 |
| 7 | + go.uber.org/zap v1.27.0 |
| 8 | +) |
| 9 | + |
| 10 | +require ( |
| 11 | + github.com/BurntSushi/toml v0.4.1 // indirect |
| 12 | + github.com/apache/thrift v0.16.0 // indirect |
| 13 | + github.com/beorn7/perks v1.0.1 // indirect |
| 14 | + github.com/cespare/xxhash/v2 v2.1.1 // indirect |
| 15 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 16 | + github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect |
| 17 | + github.com/golang-jwt/jwt/v5 v5.2.0 // indirect |
| 18 | + github.com/golang/mock v1.5.0 // indirect |
| 19 | + github.com/golang/protobuf v1.5.3 // indirect |
| 20 | + github.com/jonboulle/clockwork v0.4.0 // indirect |
| 21 | + github.com/marusama/semaphore/v2 v2.5.0 // indirect |
| 22 | + github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect |
| 23 | + github.com/opentracing/opentracing-go v1.1.0 // indirect |
| 24 | + github.com/pborman/uuid v0.0.0-20160209185913-a97ce2ca70fa // indirect |
| 25 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 26 | + github.com/prometheus/client_golang v1.11.1 // indirect |
| 27 | + github.com/prometheus/client_model v0.2.0 // indirect |
| 28 | + github.com/prometheus/common v0.26.0 // indirect |
| 29 | + github.com/prometheus/procfs v0.6.0 // indirect |
| 30 | + github.com/robfig/cron v1.2.0 // indirect |
| 31 | + github.com/stretchr/objx v0.5.2 // indirect |
| 32 | + github.com/stretchr/testify v1.9.0 // indirect |
| 33 | + github.com/uber-go/tally v3.3.15+incompatible // indirect |
| 34 | + github.com/uber/tchannel-go v1.32.1 // indirect |
| 35 | + go.uber.org/atomic v1.11.0 // indirect |
| 36 | + go.uber.org/multierr v1.10.0 // indirect |
| 37 | + go.uber.org/net/metrics v1.3.0 // indirect |
| 38 | + go.uber.org/thriftrw v1.25.0 // indirect |
| 39 | + go.uber.org/yarpc v1.55.0 // indirect |
| 40 | + golang.org/x/exp/typeparams v0.0.0-20220218215828-6cf2b201936e // indirect |
| 41 | + golang.org/x/lint v0.0.0-20200130185559-910be7a94367 // indirect |
| 42 | + golang.org/x/mod v0.8.0 // indirect |
| 43 | + golang.org/x/net v0.19.0 // indirect |
| 44 | + golang.org/x/oauth2 v0.1.0 // indirect |
| 45 | + golang.org/x/sys v0.15.0 // indirect |
| 46 | + golang.org/x/text v0.14.0 // indirect |
| 47 | + golang.org/x/time v0.0.0-20170927054726-6dc17368e09b // indirect |
| 48 | + golang.org/x/tools v0.6.0 // indirect |
| 49 | + google.golang.org/appengine v1.6.7 // indirect |
| 50 | + google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce // indirect |
| 51 | + google.golang.org/grpc v1.28.0 // indirect |
| 52 | + google.golang.org/protobuf v1.31.0 // indirect |
| 53 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
| 54 | + honnef.co/go/tools v0.3.2 // indirect |
| 55 | +) |
| 56 | + |
| 57 | +replace github.com/uber/cadence => ../.. |
0 commit comments