go.mod 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. module github.com/chrislusf/seaweedfs
  2. go 1.12
  3. require (
  4. cloud.google.com/go v0.44.3
  5. github.com/Azure/azure-pipeline-go v0.2.2 // indirect
  6. github.com/Azure/azure-storage-blob-go v0.8.0
  7. github.com/OneOfOne/xxhash v1.2.2
  8. github.com/Shopify/sarama v1.23.1
  9. github.com/aws/aws-sdk-go v1.33.5
  10. github.com/banzaicloud/logrus-runtime-formatter v0.0.0-20190729070250-5ae5475bae5e
  11. github.com/buraksezer/consistent v0.0.0-20191006190839-693edf70fd72
  12. github.com/cespare/xxhash v1.1.0
  13. github.com/chrislusf/raft v1.0.3
  14. github.com/coreos/go-semver v0.3.0 // indirect
  15. github.com/dgrijalva/jwt-go v3.2.0+incompatible
  16. github.com/disintegration/imaging v1.6.2
  17. github.com/dustin/go-humanize v1.0.0
  18. github.com/eapache/go-resiliency v1.2.0 // indirect
  19. github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a
  20. github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c // indirect
  21. github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
  22. github.com/facebookgo/stats v0.0.0-20151006221625-1b76add642e4
  23. github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 // indirect
  24. github.com/fclairamb/ftpserverlib v0.8.0
  25. github.com/frankban/quicktest v1.7.2 // indirect
  26. github.com/go-errors/errors v1.1.1 // indirect
  27. github.com/go-redis/redis v6.15.7+incompatible
  28. github.com/go-sql-driver/mysql v1.5.0
  29. github.com/gocql/gocql v0.0.0-20190829130954-e163eff7a8c6
  30. github.com/gogo/protobuf v1.2.2-0.20190730201129-28a6bbf47e48 // indirect
  31. github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6
  32. github.com/golang/protobuf v1.4.2
  33. github.com/google/btree v1.0.0
  34. github.com/google/uuid v1.1.1
  35. github.com/gorilla/mux v1.7.4
  36. github.com/gorilla/websocket v1.4.1 // indirect
  37. github.com/grpc-ecosystem/grpc-gateway v1.11.0 // indirect
  38. github.com/jcmturner/gofork v1.0.0 // indirect
  39. github.com/json-iterator/go v1.1.10
  40. github.com/karlseguin/ccache v2.0.3+incompatible
  41. github.com/karlseguin/expect v1.0.1 // indirect
  42. github.com/klauspost/compress v1.10.9
  43. github.com/klauspost/cpuid v1.2.1 // indirect
  44. github.com/klauspost/crc32 v1.2.0
  45. github.com/klauspost/reedsolomon v1.9.2
  46. github.com/kurin/blazer v0.5.3
  47. github.com/lib/pq v1.2.0
  48. github.com/lunixbochs/vtclean v1.0.0 // indirect
  49. github.com/magiconair/properties v1.8.1 // indirect
  50. github.com/mattn/go-ieproxy v0.0.0-20190805055040-f9202b1cfdeb // indirect
  51. github.com/mattn/go-runewidth v0.0.4 // indirect
  52. github.com/olivere/elastic/v7 v7.0.19
  53. github.com/onsi/ginkgo v1.10.1 // indirect
  54. github.com/onsi/gomega v1.7.0 // indirect
  55. github.com/peterh/liner v1.1.0
  56. github.com/pierrec/lz4 v2.2.7+incompatible // indirect
  57. github.com/prometheus/client_golang v1.3.0
  58. github.com/rakyll/statik v0.1.7
  59. github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563 // indirect
  60. github.com/seaweedfs/fuse v1.0.7
  61. github.com/seaweedfs/goexif v1.0.2
  62. github.com/sirupsen/logrus v1.4.2
  63. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  64. github.com/spaolacci/murmur3 v1.1.0 // indirect
  65. github.com/spf13/jwalterweatherman v1.1.0 // indirect
  66. github.com/spf13/viper v1.4.0
  67. github.com/stretchr/testify v1.6.1
  68. github.com/syndtr/goleveldb v1.0.0
  69. github.com/tidwall/gjson v1.3.2
  70. github.com/tidwall/match v1.0.1
  71. github.com/valyala/bytebufferpool v1.0.0
  72. github.com/viant/assertly v0.5.4 // indirect
  73. github.com/viant/ptrie v0.3.0
  74. github.com/viant/toolbox v0.33.2 // indirect
  75. github.com/willf/bitset v1.1.10 // indirect
  76. github.com/willf/bloom v2.0.3+incompatible
  77. github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0 // indirect
  78. go.etcd.io/etcd v3.3.15+incompatible
  79. go.mongodb.org/mongo-driver v1.3.2
  80. gocloud.dev v0.16.0
  81. gocloud.dev/pubsub/natspubsub v0.16.0
  82. gocloud.dev/pubsub/rabbitpubsub v0.16.0
  83. golang.org/x/image v0.0.0-20200119044424-58c23975cae1 // indirect
  84. golang.org/x/net v0.0.0-20200202094626-16171245cfb2
  85. golang.org/x/sync v0.0.0-20200930132711-30421366ff76 // indirect
  86. golang.org/x/sys v0.0.0-20201022201747-fb209a7c41cd
  87. golang.org/x/tools v0.0.0-20200103221440-774c71fcf114
  88. google.golang.org/api v0.9.0
  89. google.golang.org/appengine v1.6.2 // indirect
  90. google.golang.org/grpc v1.29.1
  91. google.golang.org/protobuf v1.24.0
  92. gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
  93. gopkg.in/jcmturner/goidentity.v3 v3.0.0 // indirect
  94. gopkg.in/jcmturner/gokrb5.v7 v7.3.0 // indirect
  95. gopkg.in/karlseguin/expect.v1 v1.0.1 // indirect
  96. )
  97. // replace github.com/seaweedfs/fuse => /Users/chris/go/src/github.com/seaweedfs/fuse
  98. // replace github.com/chrislusf/raft => /Users/chris/go/src/github.com/chrislusf/raft
  99. replace go.etcd.io/etcd => go.etcd.io/etcd v0.5.0-alpha.5.0.20200425165423-262c93980547