Files
seaweedfs/telemetry/server/go.mod
T
Chris LuandGitHub 63a180ef75 telemetry: sync the server module with the client_golang bump (#10551)
The server module has its own go.mod and replaces the root module from
../.., so bumping prometheus/client_golang in the root leaves this one
pinned below what the replacement needs and 'go build' refuses to run.
2026-08-03 13:22:50 -07:00

22 lines
653 B
AMPL

module github.com/seaweedfs/seaweedfs/telemetry/server
go 1.25.8
require (
github.com/prometheus/client_golang v1.24.1
github.com/seaweedfs/seaweedfs v0.0.0-00010101000000-000000000000
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/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
golang.org/x/sys v0.47.0 // indirect
)
replace github.com/seaweedfs/seaweedfs => ../..