-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
34 lines (22 loc) · 793 Bytes
/
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
module github.com/hedzr/evendeep
go 1.22.7
// replace github.com/hedzr/cmdr/v2 => ../cmdr
// replace gopkg.in/hedzr/errors.v3 => ../../24/libs.errors
// replace github.com/hedzr/go-errors/v2 => ../libs.errors
// replace github.com/hedzr/env => ../libs.env
// replace github.com/hedzr/is => ../libs.is
// replace github.com/hedzr/logg => ../libs.logg
// replace github.com/hedzr/logz => ../libs.logz
// replace github.com/hedzr/go-utils/v2 => ../libs.utils
// replace github.com/hedzr/go-log/v2 => ../libs.log
require (
github.com/hedzr/is v0.6.5
github.com/hedzr/logg v0.7.17
gopkg.in/hedzr/errors.v3 v3.3.5
)
require (
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
)