diff options
author | Johan Fleury <jfleury+github@arcaik.net> | 2021-04-06 04:58:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-06 10:58:10 +0200 |
commit | bd662b091fad176e225b39e7f05b73ecba37cd72 (patch) | |
tree | 06c08a7a32d641462f39804fae1549b69301364c /repository.go | |
parent | d5ed15d99d9b5c375dc15b0a009c915ac4edc6f7 (diff) | |
download | go-git-bd662b091fad176e225b39e7f05b73ecba37cd72.tar.gz |
*: replace golang.org/x/crypto/openpgp by github.com/ProtonMail/go-crypto/openpgp (#283)
Diffstat (limited to 'repository.go')
-rw-r--r-- | repository.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repository.go b/repository.go index cc487d4..6c504fd 100644 --- a/repository.go +++ b/repository.go @@ -16,6 +16,7 @@ import ( "github.com/go-git/go-git/v5/storage/filesystem/dotgit" + "github.com/ProtonMail/go-crypto/openpgp" "github.com/go-git/go-git/v5/config" "github.com/go-git/go-git/v5/internal/revision" "github.com/go-git/go-git/v5/plumbing" @@ -27,7 +28,6 @@ import ( "github.com/go-git/go-git/v5/storage/filesystem" "github.com/go-git/go-git/v5/utils/ioutil" "github.com/imdario/mergo" - "golang.org/x/crypto/openpgp" "github.com/go-git/go-billy/v5" "github.com/go-git/go-billy/v5/osfs" |