forked from JointCloud/JCC-CSScheduler
61 lines
2.4 KiB
Modula-2
61 lines
2.4 KiB
Modula-2
module gitlink.org.cn/cloudream/scheduler
|
|
|
|
go 1.20
|
|
|
|
replace gitlink.org.cn/cloudream/common v0.0.0 => ../common
|
|
|
|
require (
|
|
github.com/gin-gonic/gin v1.9.1
|
|
github.com/google/uuid v1.3.0
|
|
github.com/samber/lo v1.38.1
|
|
github.com/smartystreets/goconvey v1.8.0
|
|
gitlink.org.cn/cloudream/common v0.0.0
|
|
google.golang.org/grpc v1.54.0
|
|
)
|
|
|
|
require (
|
|
github.com/gopherjs/gopherjs v1.17.2 // indirect
|
|
github.com/jtolds/gls v4.20.0+incompatible // indirect
|
|
github.com/smartystreets/assertions v1.13.1 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/antonfisher/nested-logrus-formatter v1.3.1 // indirect
|
|
github.com/bytedance/sonic v1.9.1 // indirect
|
|
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // 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/goccy/go-json v0.10.2 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/imdario/mergo v0.3.15 // indirect
|
|
github.com/inhies/go-bytesize v0.0.0-20220417184213-4913239db9cf
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
|
|
github.com/leodido/go-urn v1.2.4 // 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/pelletier/go-toml/v2 v2.0.8 // indirect
|
|
github.com/sirupsen/logrus v1.9.2 // indirect
|
|
github.com/streadway/amqp v1.1.0 // indirect
|
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.11 // indirect
|
|
github.com/zyedidia/generic v1.2.1 // indirect
|
|
golang.org/x/arch v0.3.0 // indirect
|
|
golang.org/x/crypto v0.9.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230519143937-03e91628a987 // indirect
|
|
golang.org/x/net v0.10.0 // indirect
|
|
golang.org/x/sys v0.8.0 // indirect
|
|
golang.org/x/text v0.9.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd // indirect
|
|
google.golang.org/protobuf v1.30.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|