|
1 | 1 | module github.com/cybertec-postgresql/vip-manager |
2 | 2 |
|
3 | | -go 1.23.8 |
| 3 | +go 1.24.0 |
4 | 4 |
|
5 | 5 | toolchain go1.24.1 |
6 | 6 |
|
7 | 7 | require ( |
8 | 8 | github.com/google/gopacket v1.1.19 |
9 | 9 | github.com/hashicorp/consul/api v1.32.1 |
10 | | - github.com/spf13/pflag v1.0.9 |
11 | | - github.com/spf13/viper v1.20.1 |
| 10 | + github.com/spf13/pflag v1.0.10 |
| 11 | + github.com/spf13/viper v1.21.0 |
12 | 12 | go.etcd.io/etcd/client/v3 v3.6.4 |
13 | 13 | go.uber.org/zap v1.27.0 |
14 | | - golang.org/x/sys v0.35.0 |
| 14 | + golang.org/x/sys v0.36.0 |
15 | 15 | ) |
16 | 16 |
|
17 | 17 | require ( |
18 | | - github.com/armon/go-metrics v0.5.3 // indirect |
| 18 | + github.com/armon/go-metrics v0.5.4 // indirect |
19 | 19 | github.com/coreos/go-semver v0.3.1 // indirect |
20 | | - github.com/coreos/go-systemd/v22 v22.5.0 // indirect |
21 | | - github.com/fatih/color v1.17.0 // indirect |
22 | | - github.com/fsnotify/fsnotify v1.8.0 // indirect |
| 20 | + github.com/coreos/go-systemd/v22 v22.6.0 // indirect |
| 21 | + github.com/fatih/color v1.18.0 // indirect |
| 22 | + github.com/fsnotify/fsnotify v1.9.0 // indirect |
23 | 23 | github.com/go-viper/mapstructure/v2 v2.4.0 // indirect |
24 | 24 | github.com/gogo/protobuf v1.3.2 // indirect |
25 | 25 | github.com/golang/protobuf v1.5.4 // indirect |
26 | | - github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect |
| 26 | + github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect |
27 | 27 | github.com/hashicorp/errwrap v1.1.0 // indirect |
28 | 28 | github.com/hashicorp/go-cleanhttp v0.5.2 // indirect |
29 | 29 | github.com/hashicorp/go-hclog v1.6.3 // indirect |
30 | 30 | github.com/hashicorp/go-immutable-radix v1.3.1 // indirect |
| 31 | + github.com/hashicorp/go-metrics v0.5.4 // indirect |
31 | 32 | github.com/hashicorp/go-multierror v1.1.1 // indirect |
32 | 33 | github.com/hashicorp/go-rootcerts v1.0.2 // indirect |
33 | 34 | github.com/hashicorp/golang-lru v1.0.2 // indirect |
34 | | - github.com/hashicorp/serf v0.10.1 // indirect |
35 | | - github.com/mattn/go-colorable v0.1.13 // indirect |
| 35 | + github.com/hashicorp/serf v0.10.2 // indirect |
| 36 | + github.com/mattn/go-colorable v0.1.14 // indirect |
36 | 37 | github.com/mattn/go-isatty v0.0.20 // indirect |
37 | 38 | github.com/mitchellh/go-homedir v1.1.0 // indirect |
38 | 39 | github.com/mitchellh/mapstructure v1.5.0 // indirect |
39 | | - github.com/pelletier/go-toml/v2 v2.2.3 // indirect |
40 | | - github.com/sagikazarmark/locafero v0.7.0 // indirect |
41 | | - github.com/sourcegraph/conc v0.3.0 // indirect |
42 | | - github.com/spf13/afero v1.12.0 // indirect |
43 | | - github.com/spf13/cast v1.7.1 // indirect |
| 40 | + github.com/pelletier/go-toml/v2 v2.2.4 // indirect |
| 41 | + github.com/sagikazarmark/locafero v0.11.0 // indirect |
| 42 | + github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect |
| 43 | + github.com/spf13/afero v1.15.0 // indirect |
| 44 | + github.com/spf13/cast v1.10.0 // indirect |
44 | 45 | github.com/subosito/gotenv v1.6.0 // indirect |
45 | 46 | go.etcd.io/etcd/api/v3 v3.6.4 // indirect |
46 | 47 | go.etcd.io/etcd/client/pkg/v3 v3.6.4 // indirect |
47 | 48 | go.uber.org/multierr v1.11.0 // indirect |
48 | | - golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect |
49 | | - golang.org/x/net v0.38.0 // indirect |
50 | | - golang.org/x/text v0.23.0 // indirect |
51 | | - google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect |
52 | | - google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect |
53 | | - google.golang.org/grpc v1.71.1 // indirect |
54 | | - google.golang.org/protobuf v1.36.5 // indirect |
55 | | - gopkg.in/yaml.v3 v3.0.1 // indirect |
| 49 | + go.yaml.in/yaml/v3 v3.0.4 // indirect |
| 50 | + golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b // indirect |
| 51 | + golang.org/x/net v0.43.0 // indirect |
| 52 | + golang.org/x/text v0.29.0 // indirect |
| 53 | + google.golang.org/genproto/googleapis/api v0.0.0-20250908214217-97024824d090 // indirect |
| 54 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20250908214217-97024824d090 // indirect |
| 55 | + google.golang.org/grpc v1.75.0 // indirect |
| 56 | + google.golang.org/protobuf v1.36.9 // indirect |
56 | 57 | ) |
57 | 58 |
|
58 | 59 | replace github.com/armon/go-metrics => github.com/hashicorp/go-metrics v0.5.3 |
0 commit comments