-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
34 lines (23 loc) · 905 Bytes
/
Copy pathgo.mod
File metadata and controls
34 lines (23 loc) · 905 Bytes
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/store/codecs/toml
go 1.26
// replace gopkg.in/hedzr/errors.v3 => ../../../../24/libs.errors
// replace github.com/hedzr/evendeep => ../../../libs.diff
// 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/store => ../..
//replace github.com/hedzr/store/providers/file => ../../providers/file
require (
github.com/hedzr/store v1.4.3
github.com/pelletier/go-toml/v2 v2.4.3
)
require (
github.com/hedzr/evendeep v1.4.3 // indirect
github.com/hedzr/is v0.9.3 // indirect
github.com/hedzr/logg v0.9.3 // indirect
golang.org/x/net v0.56.0 // indirect
golang.org/x/sys v0.46.0 // indirect
golang.org/x/term v0.44.0 // indirect
gopkg.in/hedzr/errors.v3 v3.3.5 // indirect
)