diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e176228..0000000 --- a/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: go - -go: - - 1.x - - tip - -matrix: - allow_failures: - - go: tip diff --git a/README.md b/README.md index 529735d..7980250 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,5 @@ -[![](https://godoc.org/github.com/andoma-go/pgpassfile?status.svg)](https://godoc.org/github.com/andoma-go/pgpassfile) -[![Build Status](https://travis-ci.org/andoma-go/pgpassfile.svg)](https://travis-ci.org/andoma-go/pgpassfile) - # pgpassfile Package pgpassfile is a parser PostgreSQL .pgpass files. -Extracted and rewritten from original implementation in https://github.com/andoma-go/pgx. +Extracted and rewritten from original implementation in https://github.com/jackc/pgx. diff --git a/go.mod b/go.mod index 369b2a2..6242597 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,10 @@ -module github.com/andoma-go/pgpassfile +module git.company.lan/gopkg/pgpassfile -go 1.12 +go 1.21.5 require github.com/stretchr/testify v1.3.0 + +require ( + github.com/davecgh/go-spew v1.1.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect +)