-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
55 lines (50 loc) · 2.15 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module github.com/hedzr/consul-tags
go 1.23.7
// replace github.com/hedzr/common v0.0.0 => ../common
// replace github.com/hedzr/cmdr/v2 => ../../cmdr.v2/cmdr
require (
github.com/hashicorp/consul/api v1.31.2
github.com/hedzr/cmdr-loaders v1.3.0
github.com/hedzr/cmdr/v2 v2.1.0
github.com/hedzr/store v1.3.0
gopkg.in/hedzr/errors.v3 v3.3.5
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/armon/go-metrics v0.4.1 // indirect
github.com/fatih/color v1.18.0 // indirect
github.com/fsnotify/fsnotify v1.8.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-metrics v0.5.4 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/serf v0.10.2 // indirect
github.com/hedzr/evendeep v1.3.0 // indirect
github.com/hedzr/is v0.7.0 // indirect
github.com/hedzr/logg v0.8.0 // indirect
github.com/hedzr/store/codecs/hcl v1.3.0 // indirect
github.com/hedzr/store/codecs/hjson v1.3.0 // indirect
github.com/hedzr/store/codecs/json v1.3.0 // indirect
github.com/hedzr/store/codecs/nestext v1.3.0 // indirect
github.com/hedzr/store/codecs/toml v1.3.0 // indirect
github.com/hedzr/store/codecs/yaml v1.3.0 // indirect
github.com/hedzr/store/providers/env v1.3.0 // indirect
github.com/hedzr/store/providers/file v1.3.0 // indirect
github.com/hjson/hjson-go/v4 v4.4.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/npillmayer/nestext v0.1.3 // indirect
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
golang.org/x/crypto v0.36.0 // indirect
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
golang.org/x/net v0.37.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/term v0.30.0 // indirect
)