Skip to content

Commit

Permalink
INF-928 Remove Gopkg files in favor of go mod ones
Browse files Browse the repository at this point in the history
Newer go tooling use go mod instead of go package for dependency
management. This commit replaces the files between both tools.

Refs [INF-928](https://mydevex.atlassian.net/browse/INF-928)
  • Loading branch information
Ignasi Fosch committed Aug 19, 2024
1 parent 88458f7 commit 228f10a
Show file tree
Hide file tree
Showing 4 changed files with 173 additions and 344 deletions.
277 changes: 0 additions & 277 deletions Gopkg.lock

This file was deleted.

67 changes: 0 additions & 67 deletions Gopkg.toml

This file was deleted.

49 changes: 49 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
module github.com/Devex/spaceflight

go 1.22.0

require (
github.com/awalterschulze/gographviz v2.0.3+incompatible
github.com/aws/aws-sdk-go v1.55.5
github.com/go-test/deep v1.1.1
github.com/lib/pq v1.10.9
github.com/olorin/nagiosplugin v1.2.0
github.com/prometheus/client_golang v1.20.0
github.com/spf13/cobra v1.8.1
github.com/spf13/viper v1.19.0
gopkg.in/olivere/elastic.v1 v1.0.1
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/olivere/elastic v6.2.37+incompatible // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.55.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // 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/subosito/gotenv v1.6.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // 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.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 228f10a

Please sign in to comment.