viper/go.mod

30 lines
851 B
Modula-2
Raw Normal View History

2022-12-12 16:17:28 +03:00
module git.internal/re/viper
2018-09-07 12:30:55 +03:00
go 1.17
2019-09-27 22:50:09 +03:00
2018-09-07 12:30:55 +03:00
require (
2022-12-12 18:04:10 +03:00
git.internal/re/afero v1.9.3
2022-12-12 17:54:03 +03:00
git.internal/re/cast v1.5.1
github.com/fsnotify/fsnotify v1.6.0
github.com/magiconair/properties v1.8.7
github.com/mitchellh/mapstructure v1.5.0
github.com/pelletier/go-toml v1.9.5
github.com/pelletier/go-toml/v2 v2.0.5
github.com/spf13/jwalterweatherman v1.1.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.1
github.com/subosito/gotenv v1.4.1
gopkg.in/ini.v1 v1.67.0
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
2018-09-07 12:30:55 +03:00
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20220908164124-27713097b956 // indirect
golang.org/x/text v0.4.0 // indirect
2022-12-12 16:17:28 +03:00
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
)