catApi/go.mod

35 lines
1.2 KiB
Go
Raw Normal View History

2023-10-26 17:13:14 +03:00
module notashelf.dev/catApi
2025-02-08 16:32:45 +03:00
go 1.22.0
toolchain go1.23.4
2023-10-27 10:01:55 +03:00
require (
github.com/sirupsen/logrus v1.9.3
2025-02-08 16:32:45 +03:00
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.10.0
2023-10-27 10:01:55 +03:00
)
require (
2023-10-27 11:49:51 +03:00
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2025-02-08 16:32:45 +03:00
github.com/fsnotify/fsnotify v1.8.0 // indirect
2023-10-27 10:01:55 +03:00
github.com/hashicorp/hcl v1.0.0 // indirect
2025-02-08 16:32:45 +03:00
github.com/magiconair/properties v1.8.9 // indirect
2023-10-27 10:01:55 +03:00
github.com/mitchellh/mapstructure v1.5.0 // indirect
2025-02-08 16:32:45 +03:00
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
2023-10-27 11:49:51 +03:00
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
2025-02-08 16:32:45 +03:00
github.com/sagikazarmark/locafero v0.7.0 // indirect
2023-10-27 10:01:55 +03:00
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
2025-02-08 16:32:45 +03:00
github.com/spf13/afero v1.12.0 // indirect
github.com/spf13/cast v1.7.1 // indirect
github.com/spf13/pflag v1.0.6 // indirect
2023-10-27 10:01:55 +03:00
github.com/subosito/gotenv v1.6.0 // indirect
2025-02-08 16:32:45 +03:00
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20250207012021-f9890c6ad9f3 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/text v0.22.0 // indirect
2023-10-27 10:01:55 +03:00
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)