47 lines
1.9 KiB
Modula-2
47 lines
1.9 KiB
Modula-2
module git.itzana.me/strafesnet/data-service
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
git.itzana.me/strafesnet/go-grpc v0.0.0-20240719190059-5e33b807d0f7
|
|
git.itzana.me/strafesnet/utils v0.0.0-20220716194944-d8ca164052f9
|
|
github.com/eko/gocache/lib/v4 v4.1.6
|
|
github.com/eko/gocache/store/go_cache/v4 v4.2.1
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/sirupsen/logrus v1.9.0
|
|
google.golang.org/grpc v1.48.0
|
|
google.golang.org/protobuf v1.33.0
|
|
gorm.io/driver/postgres v1.1.0
|
|
gorm.io/gorm v1.21.11
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/golang/mock v1.6.0 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgconn v1.8.1 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.0.6 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/jackc/pgtype v1.7.0 // indirect
|
|
github.com/jackc/pgx/v4 v4.11.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.2 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/prometheus/client_golang v1.14.0 // indirect
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
|
github.com/prometheus/common v0.37.0 // indirect
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
|
|
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect
|
|
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
|
|
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect
|
|
)
|