Skip to content

Commit

Permalink
fix: replace DEP to GoMod
Browse files Browse the repository at this point in the history
Signed-off-by: Alexjander Bacalso <[email protected]>
  • Loading branch information
XanderDwyl committed Oct 14, 2021
1 parent c9cd4e9 commit 9a41a06
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ go:
- tip

script:
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure
- go mod tidy
- go mod vendor
- go test ./...
10 changes: 10 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module github.com/XanderDwyl/libphonenumber

go 1.17

require (
github.com/golang/protobuf v1.0.0
github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2
)

require golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
6 changes: 6 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
github.com/golang/protobuf v1.0.0 h1:lsek0oXi8iFE9L+EXARyHIjU5rlWIhhTkjDz3vHhWWQ=
github.com/golang/protobuf v1.0.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2 h1:5u+EJUQiosu3JFX0XS0qTf5FznsMOzTjGqavBGuCbo0=
github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2/go.mod h1:4kyMkleCiLkgY6z8gK5BkI01ChBtxR0ro3I1ZDcGM3w=
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

0 comments on commit 9a41a06

Please sign in to comment.