From 74da10104d9c4777d801454cfaa90987108f8875 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 22 Oct 2019 16:09:39 -0400 Subject: [PATCH] gitsrht-shell: use x/crypto over crypto ed25519 ships in go 1.13; Alpine is still on on 1.12 --- gitsrht-shell/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitsrht-shell/main.go b/gitsrht-shell/main.go index 0f67472..89493f7 100644 --- a/gitsrht-shell/main.go +++ b/gitsrht-shell/main.go @@ -2,7 +2,6 @@ package main import ( "bytes" - "crypto/ed25519" "crypto/rand" "encoding/base64" "encoding/hex" @@ -22,6 +21,7 @@ import ( "github.com/google/shlex" "github.com/vaughan0/go-ini" + "golang.org/x/crypto/ed25519" ) func main() { -- 2.38.4