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.5 KiB
83 lines
3.5 KiB
module sonet |
|
|
|
go 1.19 |
|
|
|
require ( |
|
github.com/bytedance/sonic v1.10.2 |
|
github.com/dsnet/golib/unitconv v1.0.2 |
|
github.com/gin-gonic/gin v1.9.1 |
|
github.com/golang/protobuf v1.5.3 |
|
github.com/google/uuid v1.4.0 |
|
github.com/gorilla/websocket v1.5.1 |
|
github.com/jhump/protoreflect v1.15.4 |
|
github.com/nats-io/nats.go v1.31.0 |
|
github.com/patrickmn/go-cache v2.1.0+incompatible |
|
github.com/redis/go-redis/v9 v9.4.0 |
|
github.com/sirupsen/logrus v1.9.3 |
|
github.com/spf13/viper v1.17.0 |
|
go.etcd.io/etcd/client/v3 v3.5.11 |
|
google.golang.org/grpc v1.60.1 |
|
google.golang.org/protobuf v1.32.0 |
|
gorm.io/driver/mysql v1.5.2 |
|
gorm.io/gorm v1.25.5 |
|
) |
|
|
|
require ( |
|
github.com/bufbuild/protocompile v0.7.1 // indirect |
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect |
|
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect |
|
github.com/chenzhuoyu/iasm v0.9.1 // indirect |
|
github.com/coreos/go-semver v0.3.0 // indirect |
|
github.com/coreos/go-systemd/v22 v22.3.2 // indirect |
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect |
|
github.com/fsnotify/fsnotify v1.7.0 // indirect |
|
github.com/gabriel-vasile/mimetype v1.4.2 // indirect |
|
github.com/gin-contrib/sse v0.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.14.0 // indirect |
|
github.com/go-sql-driver/mysql v1.7.0 // indirect |
|
github.com/goccy/go-json v0.10.2 // indirect |
|
github.com/gogo/protobuf v1.3.2 // indirect |
|
github.com/hashicorp/hcl v1.0.0 // 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.17.4 // indirect |
|
github.com/klauspost/cpuid/v2 v2.2.4 // indirect |
|
github.com/leodido/go-urn v1.2.4 // indirect |
|
github.com/magiconair/properties v1.8.7 // indirect |
|
github.com/mattn/go-isatty v0.0.19 // indirect |
|
github.com/mitchellh/mapstructure v1.5.0 // indirect |
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
|
github.com/modern-go/reflect2 v1.0.2 // indirect |
|
github.com/nats-io/nkeys v0.4.7 // indirect |
|
github.com/nats-io/nuid v1.0.1 // indirect |
|
github.com/pelletier/go-toml/v2 v2.1.0 // indirect |
|
github.com/sagikazarmark/locafero v0.4.0 // indirect |
|
github.com/sagikazarmark/slog-shim v0.1.0 // indirect |
|
github.com/sourcegraph/conc v0.3.0 // indirect |
|
github.com/spf13/afero v1.11.0 // indirect |
|
github.com/spf13/cast v1.6.0 // indirect |
|
github.com/spf13/pflag v1.0.5 // indirect |
|
github.com/subosito/gotenv v1.6.0 // indirect |
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect |
|
github.com/ugorji/go/codec v1.2.11 // indirect |
|
go.etcd.io/etcd/api/v3 v3.5.11 // indirect |
|
go.etcd.io/etcd/client/pkg/v3 v3.5.11 // indirect |
|
go.uber.org/atomic v1.9.0 // indirect |
|
go.uber.org/multierr v1.9.0 // indirect |
|
go.uber.org/zap v1.21.0 // indirect |
|
golang.org/x/arch v0.3.0 // indirect |
|
golang.org/x/crypto v0.18.0 // indirect |
|
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect |
|
golang.org/x/net v0.19.0 // indirect |
|
golang.org/x/sync v0.5.0 // indirect |
|
golang.org/x/sys v0.16.0 // indirect |
|
golang.org/x/text v0.14.0 // indirect |
|
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect |
|
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect |
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect |
|
gopkg.in/ini.v1 v1.67.0 // indirect |
|
gopkg.in/yaml.v3 v3.0.1 // indirect |
|
)
|
|
|