|
1 | 1 | module github.com/servian/TechChallengeApp
|
2 | 2 |
|
3 |
| -go 1.14 |
| 3 | +go 1.18 |
4 | 4 |
|
5 | 5 | require (
|
6 |
| - github.com/BurntSushi/toml v0.3.1 // indirect |
7 | 6 | github.com/GeertJohan/go.rice v1.0.2
|
8 |
| - github.com/fsnotify/fsnotify v1.4.7 // indirect |
| 7 | + github.com/gorilla/mux v1.8.0 |
| 8 | + github.com/lib/pq v1.10.6 |
| 9 | + github.com/spf13/cobra v1.5.0 |
| 10 | + github.com/spf13/viper v1.12.0 |
| 11 | +) |
| 12 | + |
| 13 | +require ( |
| 14 | + github.com/BurntSushi/toml v0.3.1 // indirect |
| 15 | + github.com/daaku/go.zipexe v1.0.1 // indirect |
| 16 | + github.com/fsnotify/fsnotify v1.5.4 // indirect |
9 | 17 | github.com/gorilla/context v1.1.1 // indirect
|
10 |
| - github.com/gorilla/mux v1.6.2 |
11 |
| - github.com/hashicorp/hcl v0.0.0-20180404174102-ef8a98b0bbce // indirect |
| 18 | + github.com/hashicorp/hcl v1.0.0 // indirect |
12 | 19 | github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
13 |
| - github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2 |
14 |
| - github.com/magiconair/properties v1.8.0 // indirect |
15 |
| - github.com/mitchellh/mapstructure v0.0.0-20180715050151-f15292f7a699 // indirect |
16 |
| - github.com/pelletier/go-toml v1.2.0 // indirect |
17 |
| - github.com/spf13/afero v1.1.1 // indirect |
18 |
| - github.com/spf13/cast v1.2.0 // indirect |
19 |
| - github.com/spf13/cobra v0.0.3 |
20 |
| - github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect |
21 |
| - github.com/spf13/pflag v1.0.1 // indirect |
22 |
| - github.com/spf13/viper v1.0.2 |
23 |
| - github.com/stretchr/testify v1.6.1 // indirect |
24 |
| - golang.org/x/sys v0.0.0-20180724212812-e072cadbbdc8 // indirect |
25 |
| - golang.org/x/text v0.3.0 // indirect |
26 |
| - gopkg.in/yaml.v2 v2.2.1 // indirect |
| 20 | + github.com/magiconair/properties v1.8.6 // indirect |
| 21 | + github.com/mitchellh/mapstructure v1.5.0 // indirect |
| 22 | + github.com/pelletier/go-toml v1.9.5 // indirect |
| 23 | + github.com/pelletier/go-toml/v2 v2.0.2 // indirect |
| 24 | + github.com/spf13/afero v1.8.2 // indirect |
| 25 | + github.com/spf13/cast v1.5.0 // indirect |
| 26 | + github.com/spf13/jwalterweatherman v1.1.0 // indirect |
| 27 | + github.com/spf13/pflag v1.0.5 // indirect |
| 28 | + github.com/stretchr/testify v1.7.2 // indirect |
| 29 | + github.com/subosito/gotenv v1.4.0 // indirect |
| 30 | + golang.org/x/sys v0.0.0-20220624220833-87e55d714810 // indirect |
| 31 | + golang.org/x/text v0.3.7 // indirect |
| 32 | + gopkg.in/ini.v1 v1.66.6 // indirect |
| 33 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
| 34 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
27 | 35 | )
|
0 commit comments