-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from nrfta/feat/config-internal
feat: allow config folder to be located in internal folder; upgrade deps
- Loading branch information
Showing
5 changed files
with
334 additions
and
1,823 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,68 @@ | ||
module github.com/nrfta/go-tiger | ||
|
||
go 1.18 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/cosmtrek/air v1.40.4 | ||
github.com/air-verse/air v1.52.3 | ||
github.com/gobuffalo/here v0.6.7 | ||
github.com/gobuffalo/packr v1.30.1 | ||
github.com/golang-migrate/migrate/v4 v4.15.2 | ||
github.com/golang-migrate/migrate/v4 v4.17.1 | ||
github.com/iancoleman/strcase v0.2.0 | ||
github.com/lib/pq v1.10.7 | ||
github.com/lib/pq v1.10.9 | ||
github.com/markbates/grift v1.5.0 | ||
github.com/neighborly/go-config v0.3.1 | ||
github.com/neighborly/go-errors v0.2.0 | ||
github.com/neighborly/go-errors v0.3.2 | ||
github.com/neighborly/go-pghelpers v0.9.0 | ||
github.com/nrfta/go-log v0.9.1 | ||
github.com/spf13/cobra v1.5.0 | ||
github.com/nrfta/go-config/v3 v3.1.0 | ||
github.com/nrfta/go-log v0.14.0 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/volatiletech/inflect v0.0.1 | ||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 | ||
golang.org/x/mod v0.19.0 | ||
) | ||
|
||
require ( | ||
dario.cat/mergo v1.0.0 // indirect | ||
github.com/99designs/gqlgen v0.17.49 // indirect | ||
github.com/DATA-DOG/go-txdb v0.1.5 // indirect | ||
github.com/creack/pty v1.1.18 // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/bep/godartsass v1.2.0 // indirect | ||
github.com/bep/godartsass/v2 v2.1.0 // indirect | ||
github.com/bep/golibsass v1.1.1 // indirect | ||
github.com/cli/safeexec v1.0.1 // indirect | ||
github.com/creack/pty v1.1.21 // indirect | ||
github.com/fatih/color v1.17.0 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-chi/chi v4.1.2+incompatible // indirect | ||
github.com/gobuffalo/envy v1.10.2 // indirect | ||
github.com/gobuffalo/packd v1.0.2 // indirect | ||
github.com/gobwas/glob v0.2.3 // indirect | ||
github.com/gohugoio/hugo v0.129.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/joho/godotenv v1.4.0 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mitchellh/hashstructure v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.2 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/rogpeppe/go-internal v1.9.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/spf13/afero v1.9.2 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/sagikazarmark/locafero v0.6.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/sosodev/duration v1.3.1 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.13.0 // indirect | ||
github.com/subosito/gotenv v1.4.1 // indirect | ||
go.uber.org/atomic v1.10.0 // indirect | ||
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect | ||
golang.org/x/text v0.3.8 // indirect | ||
github.com/spf13/viper v1.19.0 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/tdewolff/parse/v2 v2.7.15 // indirect | ||
github.com/vektah/gqlparser/v2 v2.5.16 // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.