Files
open-im-server/go.mod
T

54 lines
2.1 KiB
Modula-2
Raw Normal View History

2021-05-26 19:42:43 +08:00
module Open_IM
go 1.15
require (
2022-05-11 09:54:47 +08:00
github.com/Shopify/sarama v1.32.0
2021-12-01 12:16:02 +08:00
github.com/alibabacloud-go/darabonba-openapi v0.1.11
github.com/alibabacloud-go/dysmsapi-20170525/v2 v2.0.8
2022-03-21 11:13:17 +08:00
github.com/alibabacloud-go/sts-20150401 v1.1.0
2021-12-01 12:16:02 +08:00
github.com/alibabacloud-go/tea v1.1.17
2021-05-26 19:42:43 +08:00
github.com/antonfisher/nested-logrus-formatter v1.3.0
github.com/bwmarrin/snowflake v0.3.0
2022-02-18 17:06:27 +08:00
github.com/fatih/structs v1.1.0
2021-05-26 19:42:43 +08:00
github.com/garyburd/redigo v1.6.2
2021-07-29 19:39:50 +08:00
github.com/gin-gonic/gin v1.7.0
github.com/go-playground/validator/v10 v10.4.1
2022-05-26 12:10:30 +08:00
github.com/go-redis/redis/v8 v8.11.5
2021-12-28 16:24:45 +08:00
github.com/go-sql-driver/mysql v1.6.0 // indirect
2022-03-29 11:27:19 +08:00
github.com/gogo/protobuf v1.3.2
github.com/golang-jwt/jwt/v4 v4.1.0
2021-05-26 19:42:43 +08:00
github.com/golang/protobuf v1.5.2
github.com/gorilla/websocket v1.4.2
2021-12-28 16:24:45 +08:00
github.com/jinzhu/copier v0.3.4
2021-05-26 19:42:43 +08:00
github.com/jinzhu/gorm v1.9.16
2021-12-28 16:24:45 +08:00
github.com/jinzhu/now v1.1.3 // indirect
2021-05-26 19:42:43 +08:00
github.com/jonboulle/clockwork v0.2.2 // indirect
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
github.com/lestrrat-go/strftime v1.0.4 // indirect
github.com/lib/pq v1.2.0 // indirect
github.com/mattn/go-sqlite3 v1.14.6 // indirect
2022-02-18 17:06:27 +08:00
github.com/minio/minio-go/v7 v7.0.22
2021-12-29 11:32:20 +08:00
github.com/mitchellh/mapstructure v1.4.2
2021-05-26 19:42:43 +08:00
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/olivere/elastic/v7 v7.0.23
2022-01-04 13:19:14 +08:00
github.com/pkg/errors v0.9.1
2021-05-26 19:42:43 +08:00
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
github.com/sirupsen/logrus v1.8.1
2021-10-22 18:49:44 +08:00
github.com/stretchr/testify v1.7.0
2021-05-26 19:42:43 +08:00
github.com/tencentyun/qcloud-cos-sts-sdk v0.0.0-20210325043845-84a0811633ca
2022-05-07 09:41:56 +08:00
go.etcd.io/etcd/api/v3 v3.5.4
2022-05-07 09:34:49 +08:00
go.etcd.io/etcd/client/v3 v3.5.4
2022-02-21 15:01:06 +08:00
go.mongodb.org/mongo-driver v1.8.3
2021-05-26 19:42:43 +08:00
golang.org/x/image v0.0.0-20210220032944-ac19c3e999fb
2022-03-14 16:49:04 +08:00
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd
2022-05-07 09:41:56 +08:00
google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 // indirect
2022-05-09 11:38:08 +08:00
google.golang.org/grpc v1.45.0
2022-01-24 01:40:49 +08:00
google.golang.org/protobuf v1.27.1
2021-12-01 12:16:02 +08:00
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
2022-03-21 11:13:17 +08:00
gopkg.in/ini.v1 v1.66.2 // indirect
2021-05-26 19:42:43 +08:00
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
2021-05-26 19:42:43 +08:00
)