We'll use GithubEntityType throughout the codebase to determine the type of operation that is about to take place, so this won't belimited to determining only pool type. We'll also use this to dedupe the label scope as well. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
92 lines
3.7 KiB
Modula-2
92 lines
3.7 KiB
Modula-2
module github.com/cloudbase/garm
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.3.2
|
|
github.com/bradleyfalzon/ghinstallation/v2 v2.9.0
|
|
github.com/cloudbase/garm-provider-common v0.1.1
|
|
github.com/felixge/httpsnoop v1.0.4
|
|
github.com/go-openapi/errors v0.21.0
|
|
github.com/go-openapi/runtime v0.26.2
|
|
github.com/go-openapi/strfmt v0.21.10
|
|
github.com/go-openapi/swag v0.22.5
|
|
github.com/golang-jwt/jwt/v5 v5.2.0
|
|
github.com/google/go-github/v57 v57.0.0
|
|
github.com/google/uuid v1.5.0
|
|
github.com/gorilla/handlers v1.5.2
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/gorilla/websocket v1.5.1
|
|
github.com/jedib0t/go-pretty/v6 v6.4.9
|
|
github.com/juju/clock v1.0.3
|
|
github.com/juju/retry v1.0.0
|
|
github.com/manifoldco/promptui v0.9.0
|
|
github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.17.0
|
|
github.com/spf13/cobra v1.8.0
|
|
github.com/stretchr/testify v1.8.4
|
|
golang.org/x/crypto v0.16.0
|
|
golang.org/x/oauth2 v0.15.0
|
|
golang.org/x/sync v0.5.0
|
|
golang.org/x/text v0.14.0
|
|
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
|
gorm.io/datatypes v1.2.0
|
|
gorm.io/driver/mysql v1.5.2
|
|
gorm.io/driver/sqlite v1.5.4
|
|
gorm.io/gorm v1.25.5
|
|
)
|
|
|
|
require (
|
|
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/chzyer/readline v1.5.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-logr/logr v1.3.0 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/go-openapi/analysis v0.21.5 // indirect
|
|
github.com/go-openapi/jsonpointer v0.20.1 // indirect
|
|
github.com/go-openapi/jsonreference v0.20.3 // indirect
|
|
github.com/go-openapi/loads v0.21.3 // indirect
|
|
github.com/go-openapi/spec v0.20.12 // indirect
|
|
github.com/go-openapi/validate v0.22.4 // indirect
|
|
github.com/go-sql-driver/mysql v1.7.1 // indirect
|
|
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/juju/errors v1.0.0 // indirect
|
|
github.com/juju/loggo v1.0.0 // indirect
|
|
github.com/juju/testing v1.0.2 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.19 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
|
|
github.com/minio/sio v0.3.1 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/oklog/ulid v1.3.1 // indirect
|
|
github.com/opentracing/opentracing-go v1.2.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/prometheus/client_model v0.5.0 // indirect
|
|
github.com/prometheus/common v0.45.0 // indirect
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
|
github.com/rivo/uniseg v0.4.4 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/stretchr/objx v0.5.1 // indirect
|
|
github.com/teris-io/shortid v0.0.0-20220617161101-71ec9f2aa569 // indirect
|
|
go.mongodb.org/mongo-driver v1.13.1 // indirect
|
|
go.opentelemetry.io/otel v1.21.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.21.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.21.0 // indirect
|
|
golang.org/x/net v0.19.0 // indirect
|
|
golang.org/x/sys v0.15.0 // indirect
|
|
google.golang.org/appengine v1.6.8 // indirect
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|