diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..8121942 --- /dev/null +++ b/go.mod @@ -0,0 +1,10 @@ +module github.com/Luzifer/password/v2 + +go 1.12 + +require ( + github.com/Luzifer/go_helpers/v2 v2.9.0 + github.com/pkg/errors v0.8.1 + github.com/tredoe/osutil v0.0.0-20161130133508-7d3ee1afa71c + golang.org/x/crypto v0.0.0-20190228161510-8dd112bcdc25 +) diff --git a/hasher/hasher_test.go b/hasher/hasher_test.go index 20cc37e..0298a31 100644 --- a/hasher/hasher_test.go +++ b/hasher/hasher_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/Luzifer/go_helpers/str" + "github.com/Luzifer/go_helpers/v2/str" ) func TestAvailableHashs(t *testing.T) { diff --git a/lib/go.mod b/lib/go.mod deleted file mode 100644 index 8d19e73..0000000 --- a/lib/go.mod +++ /dev/null @@ -1,8 +0,0 @@ -module github.com/Luzifer/password/lib/v2 - -go 1.12 - -require ( - github.com/Luzifer/go_helpers/v2 v2.9.0 - github.com/pkg/errors v0.8.1 -)