38 lines
1.2 KiB
Modula-2
38 lines
1.2 KiB
Modula-2
module proxy-pool
|
|
|
|
go 1.26.0
|
|
|
|
require (
|
|
github.com/jackc/pgx/v5 v5.6.0
|
|
github.com/prometheus/client_golang v1.24.1
|
|
github.com/redis/go-redis/v9 v9.19.0
|
|
go.yaml.in/yaml/v4 v4.0.0-rc.3
|
|
google.golang.org/grpc v1.83.0
|
|
google.golang.org/protobuf v1.36.11
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/prometheus/client_model v0.6.2 // indirect
|
|
github.com/prometheus/common v0.70.1 // indirect
|
|
github.com/prometheus/procfs v0.21.1 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
golang.org/x/crypto v0.54.0 // indirect
|
|
golang.org/x/net v0.57.0 // indirect
|
|
golang.org/x/sync v0.22.0 // indirect
|
|
golang.org/x/sys v0.47.0 // indirect
|
|
golang.org/x/text v0.40.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20260526163538-3dc84a4a5aaa // indirect
|
|
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.6.2 // indirect
|
|
)
|
|
|
|
tool (
|
|
google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
|
google.golang.org/protobuf/cmd/protoc-gen-go
|
|
)
|