2018-09-07 09:30:55 +00:00
|
|
|
module github.com/spf13/viper
|
|
|
|
|
2024-06-02 09:02:28 +00:00
|
|
|
go 1.21
|
2019-09-27 19:50:09 +00:00
|
|
|
|
2018-09-07 09:30:55 +00:00
|
|
|
require (
|
2023-11-29 16:43:21 +00:00
|
|
|
github.com/fsnotify/fsnotify v1.7.0
|
2023-12-19 21:15:13 +00:00
|
|
|
github.com/go-viper/mapstructure/v2 v2.0.0
|
2018-09-07 09:30:55 +00:00
|
|
|
github.com/hashicorp/hcl v1.0.0
|
2022-12-08 17:04:08 +00:00
|
|
|
github.com/magiconair/properties v1.8.7
|
2024-05-01 17:38:02 +00:00
|
|
|
github.com/pelletier/go-toml/v2 v2.2.2
|
2024-06-04 18:23:25 +00:00
|
|
|
github.com/sagikazarmark/locafero v0.6.0
|
2023-11-28 18:05:59 +00:00
|
|
|
github.com/spf13/afero v1.11.0
|
2023-11-29 14:44:09 +00:00
|
|
|
github.com/spf13/cast v1.6.0
|
2021-06-15 23:34:14 +00:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2024-03-01 17:22:21 +00:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2023-08-15 17:53:29 +00:00
|
|
|
github.com/subosito/gotenv v1.6.0
|
2022-09-03 15:34:50 +00:00
|
|
|
gopkg.in/ini.v1 v1.67.0
|
2022-06-06 17:20:19 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2018-09-07 09:30:55 +00:00
|
|
|
)
|
2021-09-15 19:29:25 +00:00
|
|
|
|
|
|
|
require (
|
2024-06-06 14:50:16 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2024-06-05 19:51:12 +00:00
|
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
2024-06-06 14:50:16 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2023-09-09 06:28:39 +00:00
|
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
2022-09-27 17:14:25 +00:00
|
|
|
go.uber.org/atomic v1.9.0 // indirect
|
2023-09-09 06:28:39 +00:00
|
|
|
go.uber.org/multierr v1.9.0 // indirect
|
2024-05-17 12:33:15 +00:00
|
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
|
|
golang.org/x/text v0.15.0 // indirect
|
2021-09-15 19:29:25 +00:00
|
|
|
)
|