go.uber.org/yarpc@v1.72.1/glide.yaml (about)

     1  package: go.uber.org/yarpc
     2  homepage: https://github.com/yarpc/yarpc-go
     3  license: MIT
     4  import:
     5  - package: github.com/apache/thrift
     6    version: 0.9.3 # TODO switch back to ^0.9.3 once Apache Thrift fixes https://issues.apache.org/jira/browse/THRIFT-4261
     7  - package: github.com/crossdock/crossdock-go
     8    version: master
     9  - package: github.com/gogo/protobuf
    10    version: '>=1, <1.3' # T4191773 - TODO: v1.3 breaks gRPC/Protobuf tests
    11  - package: github.com/gogo/googleapis
    12    version: '>=1, <1.3' # T4191773 - not pinning to a version grabs latest master :/
    13  - package: github.com/mattn/go-shellwords
    14    version: ^1
    15  - package: github.com/uber-go/mapdecode
    16    version: '>=0.3, < 2.0'
    17  - package: github.com/opentracing/opentracing-go
    18    version: ^1
    19  - package: go.uber.org/fx
    20    version: ^1
    21  - package: go.uber.org/zap
    22    version: ^1
    23  - package: github.com/uber/jaeger-client-go
    24    version: '>=1, <3'
    25  - package: github.com/uber/tchannel-go
    26    version: ^1.16.0
    27  - package: github.com/uber-go/tally
    28    version: ^3
    29  - package: go.uber.org/atomic
    30    version: ^1
    31  - package: go.uber.org/net/metrics
    32    version: ^1
    33  - package: go.uber.org/thriftrw
    34    version: ^1.25.0
    35  - package: golang.org/x/net
    36    version: master
    37    subpackages:
    38    - context
    39  - package: google.golang.org/grpc
    40    version: ^1.19.0
    41    repo: https://github.com/grpc/grpc-go
    42  - package: golang.org/x/sys
    43    # explicitly specifying this because glide is having issues with golang.org repos
    44    # this is just a dependency of golang.org/x/net and if this problem is fixed
    45    # then we no longer need to have this dependency in glide.yaml
    46    repo: https://github.com/golang/sys
    47  - package: golang.org/x/tools
    48    # explicitly specifying this because glide is having issues with golang.org repos
    49    # this is just a dependency of golang.org/x/net and if this problem is fixed
    50    # then we no longer need to have this dependency in glide.yaml imports
    51    # we should then move it to testImports
    52    repo: https://github.com/golang/tools
    53  - package: gopkg.in/yaml.v2
    54  - package: go.uber.org/multierr
    55    version: '>= 0.1, < 2.0'
    56  - package: github.com/golang/mock
    57    version: ^1
    58  - package: golang.org/x/lint
    59    subpackages:
    60    - golint
    61  - package: github.com/kisielk/errcheck
    62  - package: go.uber.org/tools
    63    subpackages:
    64    - update-license
    65  - package: honnef.co/go/tools
    66    version: 2019.2.3
    67    subpackages:
    68    - cmd/staticcheck
    69  - package: github.com/gogo/status
    70    version: ^1.1.0
    71  # Version 1.2.0 of prometheus/client_golang uses xxhash/v2, which we cannot
    72  # pull from Glide. Use older versions until we can upgrade to Go modules.
    73  - package: github.com/prometheus/client_golang
    74    version: '>= 0.9, < 1.2.0'
    75  - package: github.com/dgryski/go-farm
    76    version: master
    77  testImport:
    78  - package: github.com/stretchr/testify
    79    # No version pin because some of our dependencies aren't pinning.
    80    subpackages:
    81    - assert
    82    - require