-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tiger Wang <[email protected]>
- Loading branch information
Showing
4 changed files
with
139 additions
and
181 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,92 +1,97 @@ | ||
module github.com/IceWhaleTech/CasaOS-MessageBus | ||
|
||
go 1.19 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/IceWhaleTech/CasaOS-Common v0.4.0 | ||
github.com/glebarez/sqlite v1.6.0 | ||
github.com/IceWhaleTech/CasaOS-Common v0.4.3 | ||
github.com/glebarez/sqlite v1.7.0 | ||
github.com/gobwas/ws v1.1.0 | ||
github.com/json-iterator/go v1.1.12 | ||
go.uber.org/goleak v1.2.0 | ||
gorm.io/gorm v1.24.2 | ||
go.uber.org/goleak v1.2.1 | ||
gorm.io/gorm v1.24.6 | ||
gotest.tools v2.2.0+incompatible | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.0.4 // indirect | ||
github.com/andybalholm/brotli v1.0.5 // indirect | ||
github.com/bytedance/sonic v1.8.6 // indirect | ||
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect | ||
github.com/coreos/go-systemd/v22 v22.5.0 // indirect | ||
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect | ||
github.com/dustin/go-humanize v1.0.0 // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/gin-gonic/gin v1.8.2 // indirect | ||
github.com/glebarez/go-sqlite v1.20.0 // indirect | ||
github.com/go-playground/locales v0.14.0 // indirect | ||
github.com/go-playground/universal-translator v0.18.0 // indirect | ||
github.com/go-playground/validator/v10 v10.11.1 // indirect | ||
github.com/gin-gonic/gin v1.9.0 // indirect | ||
github.com/glebarez/go-sqlite v1.21.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.12.0 // indirect | ||
github.com/gobwas/httphead v0.1.0 // indirect | ||
github.com/gobwas/pool v0.2.1 // indirect | ||
github.com/goccy/go-json v0.10.0 // indirect | ||
github.com/goccy/go-json v0.10.2 // indirect | ||
github.com/godbus/dbus/v5 v5.1.0 // indirect | ||
github.com/gofrs/uuid v4.0.0+incompatible // indirect | ||
github.com/gofrs/uuid v4.4.0+incompatible // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/gomodule/redigo v2.0.0+incompatible // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/gorilla/mux v1.8.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/klauspost/compress v1.15.13 // indirect | ||
github.com/klauspost/compress v1.16.3 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.4 // indirect | ||
github.com/klauspost/pgzip v1.2.5 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/leodido/go-urn v1.2.2 // indirect | ||
github.com/mholt/archiver/v3 v3.5.1 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/nwaples/rardecode v1.1.3 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.7 // indirect | ||
github.com/perimeterx/marshmallow v1.1.4 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.17 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20220927061507-ef77025ab5aa // indirect | ||
github.com/ugorji/go/codec v1.2.8 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||
github.com/ugorji/go/codec v1.2.11 // indirect | ||
github.com/ulikunitz/xz v0.5.11 // indirect | ||
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect | ||
golang.org/x/arch v0.3.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
modernc.org/libc v1.22.2 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
modernc.org/libc v1.22.3 // indirect | ||
modernc.org/mathutil v1.5.0 // indirect | ||
modernc.org/memory v1.5.0 // indirect | ||
modernc.org/sqlite v1.20.2 // indirect | ||
modernc.org/sqlite v1.21.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect | ||
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf | ||
github.com/deepmap/oapi-codegen v1.12.4 | ||
github.com/getkin/kin-openapi v0.112.0 | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/getkin/kin-openapi v0.115.0 | ||
github.com/go-openapi/jsonpointer v0.19.6 // indirect | ||
github.com/go-openapi/swag v0.22.3 // indirect | ||
github.com/google/uuid v1.3.0 | ||
github.com/googollee/go-socket.io v1.6.2 | ||
github.com/googollee/go-socket.io v1.7.0 | ||
github.com/invopop/yaml v0.2.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/labstack/echo/v4 v4.10.0 | ||
github.com/labstack/echo/v4 v4.10.2 | ||
github.com/labstack/gommon v0.4.0 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mattn/go-isatty v0.0.18 // indirect | ||
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.2 // indirect | ||
go.uber.org/atomic v1.10.0 // indirect | ||
go.uber.org/multierr v1.9.0 // indirect | ||
go.uber.org/multierr v1.10.0 // indirect | ||
go.uber.org/zap v1.24.0 | ||
golang.org/x/crypto v0.4.0 // indirect | ||
golang.org/x/net v0.4.0 // indirect | ||
golang.org/x/sys v0.3.0 // indirect | ||
golang.org/x/text v0.5.0 // indirect | ||
golang.org/x/crypto v0.7.0 // indirect | ||
golang.org/x/net v0.8.0 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.