2022-12-20 21:45:52 +08:00
|
|
|
module github.com/eigeen/furryboard/spider-scheduler
|
|
|
|
|
|
|
|
go 1.19
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/BurntSushi/toml v0.3.1
|
|
|
|
github.com/antonfisher/nested-logrus-formatter v1.3.1
|
|
|
|
github.com/mcuadros/go-defaults v1.2.0
|
|
|
|
github.com/sirupsen/logrus v1.9.0
|
|
|
|
google.golang.org/grpc v1.51.0
|
|
|
|
gorm.io/driver/postgres v1.4.5
|
|
|
|
gorm.io/gorm v1.24.2
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
|
|
github.com/jackc/pgconn v1.13.0 // indirect
|
|
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
|
|
github.com/jackc/pgproto3/v2 v2.3.1 // indirect
|
|
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
|
|
github.com/jackc/pgtype v1.12.0 // indirect
|
|
|
|
github.com/jackc/pgx/v4 v4.17.2 // indirect
|
|
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
|
|
github.com/jinzhu/now v1.1.4 // indirect
|
2022-12-25 18:06:03 +08:00
|
|
|
github.com/robfig/cron/v3 v3.0.0 // indirect
|
2022-12-20 21:45:52 +08:00
|
|
|
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
|
|
|
|
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
|
|
|
|
golang.org/x/text v0.4.0 // indirect
|
|
|
|
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
|
|
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
|
|
)
|