mirror of https://github.com/kone-net/go-chat.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.4 KiB
83 lines
3.4 KiB
module chat-room |
|
|
|
go 1.25 |
|
|
|
require ( |
|
github.com/Shopify/sarama v1.38.1 |
|
github.com/gin-gonic/gin v1.11.0 |
|
github.com/google/uuid v1.6.0 |
|
github.com/gorilla/websocket v1.5.3 |
|
github.com/spf13/viper v1.21.0 |
|
go.uber.org/zap v1.27.0 |
|
google.golang.org/protobuf v1.36.10 |
|
gorm.io/driver/mysql v1.6.0 |
|
gorm.io/gorm v1.31.0 |
|
gorm.io/plugin/soft_delete v1.2.1 |
|
) |
|
|
|
require ( |
|
filippo.io/edwards25519 v1.1.0 // indirect |
|
github.com/BurntSushi/toml v1.5.0 // indirect |
|
github.com/bytedance/gopkg v0.1.3 // indirect |
|
github.com/bytedance/sonic v1.14.2 // indirect |
|
github.com/bytedance/sonic/loader v0.4.0 // indirect |
|
github.com/cloudwego/base64x v0.1.6 // indirect |
|
github.com/davecgh/go-spew v1.1.1 // indirect |
|
github.com/eapache/go-resiliency v1.7.0 // indirect |
|
github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect |
|
github.com/eapache/queue v1.1.0 // indirect |
|
github.com/fsnotify/fsnotify v1.9.0 // indirect |
|
github.com/gabriel-vasile/mimetype v1.4.11 // indirect |
|
github.com/gin-contrib/sse v1.1.0 // indirect |
|
github.com/go-playground/locales v0.14.1 // indirect |
|
github.com/go-playground/universal-translator v0.18.1 // indirect |
|
github.com/go-playground/validator/v10 v10.28.0 // indirect |
|
github.com/go-sql-driver/mysql v1.9.3 // indirect |
|
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect |
|
github.com/goccy/go-json v0.10.5 // indirect |
|
github.com/goccy/go-yaml v1.18.0 // indirect |
|
github.com/golang/snappy v1.0.0 // indirect |
|
github.com/hashicorp/errwrap v1.1.0 // indirect |
|
github.com/hashicorp/go-multierror v1.1.1 // indirect |
|
github.com/hashicorp/go-uuid v1.0.3 // indirect |
|
github.com/jcmturner/aescts/v2 v2.0.0 // indirect |
|
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect |
|
github.com/jcmturner/gofork v1.7.6 // indirect |
|
github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect |
|
github.com/jcmturner/rpc/v2 v2.0.3 // indirect |
|
github.com/jinzhu/inflection v1.0.0 // indirect |
|
github.com/jinzhu/now v1.1.5 // indirect |
|
github.com/json-iterator/go v1.1.12 // indirect |
|
github.com/klauspost/compress v1.18.1 // indirect |
|
github.com/klauspost/cpuid/v2 v2.3.0 // indirect |
|
github.com/leodido/go-urn v1.4.0 // indirect |
|
github.com/mattn/go-isatty v0.0.20 // indirect |
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
|
github.com/modern-go/reflect2 v1.0.2 // indirect |
|
github.com/natefinch/lumberjack v2.0.0+incompatible |
|
github.com/pelletier/go-toml/v2 v2.2.4 // indirect |
|
github.com/pierrec/lz4/v4 v4.1.22 // indirect |
|
github.com/quic-go/qpack v0.5.1 // indirect |
|
github.com/quic-go/quic-go v0.55.0 // indirect |
|
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 // indirect |
|
github.com/sagikazarmark/locafero v0.12.0 // indirect |
|
github.com/spf13/afero v1.15.0 // indirect |
|
github.com/spf13/cast v1.10.0 // indirect |
|
github.com/spf13/pflag v1.0.10 // indirect |
|
github.com/subosito/gotenv v1.6.0 // indirect |
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect |
|
github.com/ugorji/go/codec v1.3.1 // indirect |
|
go.uber.org/mock v0.6.0 // indirect |
|
go.uber.org/multierr v1.11.0 // indirect |
|
go.yaml.in/yaml/v3 v3.0.4 // indirect |
|
golang.org/x/arch v0.22.0 // indirect |
|
golang.org/x/crypto v0.43.0 // indirect |
|
golang.org/x/mod v0.29.0 // indirect |
|
golang.org/x/net v0.46.0 // indirect |
|
golang.org/x/sync v0.17.0 // indirect |
|
golang.org/x/sys v0.37.0 // indirect |
|
golang.org/x/text v0.30.0 // indirect |
|
golang.org/x/tools v0.38.0 // indirect |
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect |
|
gopkg.in/yaml.v2 v2.4.0 // indirect |
|
)
|
|
|