Last active
May 20, 2020 17:16
-
-
Save robskillington/f0ba5e4679f8f04d0e5bcf58902677f4 to your computer and use it in GitHub Desktop.
go.mod for building against M3 monorepo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module github.com/chronosphereio/enterprise | |
go 1.13 | |
require ( | |
github.com/RoaringBitmap/roaring v0.4.21 // indirect | |
github.com/apache/thrift/lib/go/thrift v0.0.0-00010101000000-000000000000 // indirect | |
github.com/apex/log v1.1.2 // indirect | |
github.com/axw/gocov v1.0.0 | |
github.com/bmizerany/perks v0.0.0-20141205001514-d9a9656a3a4b // indirect | |
github.com/briandowns/spinner v1.9.0 // indirect | |
github.com/cespare/xxhash v1.1.0 | |
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect | |
github.com/couchbase/vellum v0.0.0-20190829182332-ef2e028c01fd // indirect | |
github.com/fossas/fossa-cli v1.0.20 | |
github.com/go-kit/kit v0.9.0 | |
github.com/golang/mock v1.4.3 | |
github.com/golangci/golangci-lint v1.26.0 | |
github.com/google/uuid v1.1.1 | |
github.com/gorilla/mux v1.7.4 | |
github.com/gorilla/websocket v1.4.1 // indirect | |
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0 // indirect | |
github.com/grpc-ecosystem/grpc-gateway v1.13.0 // indirect | |
github.com/jhump/protoreflect v1.6.0 // indirect | |
github.com/json-iterator/go v1.1.9 | |
github.com/leanovate/gopter v0.2.7 | |
github.com/lightstep/lightstep-tracer-go v0.19.0 // indirect | |
github.com/m3db/bitset v2.0.0+incompatible // indirect | |
github.com/m3db/bloom v3.0.0+incompatible // indirect | |
github.com/m3db/m3 v0.15.0-rc.10 | |
github.com/m3db/pilosa v0.0.0-20190128031222-ac8920c6e1ab // indirect | |
github.com/m3db/stackadler32 v0.0.0-20180104200216-bfebcd73ef6f // indirect | |
github.com/m3db/stackmurmur3 v0.0.0-20171110233611-744c0229c12e // indirect | |
github.com/m3db/vellum v0.0.0-20190111185746-e766292d14de // indirect | |
github.com/mauricelam/genny v0.0.0-20190320071652-0800202903e5 // indirect | |
github.com/pilosa/pilosa v1.4.0 // indirect | |
github.com/pkg/errors v0.9.1 | |
github.com/pkg/profile v1.4.0 // indirect | |
github.com/prashantv/protectmem v0.0.0-20171002184600-e20412882b3a // indirect | |
github.com/prometheus/client_golang v1.5.1 | |
github.com/prometheus/common v0.9.1 | |
github.com/prometheus/prometheus v2.5.0+incompatible | |
github.com/rveen/ogdl v0.0.0-20200128162841-892980e34e3d // indirect | |
github.com/streadway/quantile v0.0.0-20150917103942-b0c588724d25 // indirect | |
github.com/stretchr/testify v1.5.1 | |
github.com/tmc/grpc-websocket-proxy v0.0.0-20200122045848-3419fae592fc // indirect | |
github.com/twotwotwo/sorts v0.0.0-20160814051341-bf5c1f2b8553 // indirect | |
github.com/uber-go/tally v3.3.15+incompatible | |
github.com/uber/tchannel-go v1.17.0 // indirect | |
go.etcd.io/etcd v0.0.0-20200224211402-c65a9e2dd1fd // indirect | |
go.uber.org/config v1.4.0 | |
go.uber.org/zap v1.14.1 | |
gopkg.in/go-ini/ini.v1 v1.52.0 // indirect | |
gopkg.in/validator.v2 v2.0.0-20191107172027-c3144fdedc21 // indirect | |
gopkg.in/vmihailenco/msgpack.v2 v2.9.1 // indirect | |
gotest.tools v2.2.0+incompatible | |
sigs.k8s.io/yaml v1.2.0 // indirect | |
) | |
replace google.golang.org/grpc => google.golang.org/grpc v1.24.0 | |
replace github.com/uber-go/atomic => go.uber.org/atomic v1.6.1-0.20200224215847-b2c105d12ef6 | |
replace github.com/apache/thrift/lib/go/thrift => github.com/m3dbx/thrift/lib/go/thrift v0.0.0-20200106002022-da72b4507a76 | |
replace github.com/apache/thrift => github.com/m3dbx/thrift v0.0.0-20200106002022-da72b4507a76 | |
replace github.com/coreos/etcd => github.com/coreos/etcd v3.3.18+incompatible | |
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.2.0+incompatible |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment