Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

crypto ed25519 added to stdlib in go1.13 #1056

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions dependency/resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"errors"
"runtime"
"sort"

//"go/build"
"os"
"path/filepath"
Expand Down Expand Up @@ -975,6 +976,10 @@ var PackagesAddedToStdlib = map[string]struct{}{
// Some packages, such as github.com/RoaringBitmap/roaring are importing
// it with build flags in files for go1.9.
"math/bits": struct{}{},

// crypto/ed25519 is a package being added to the Go 1.13 standard library.
// It is importing itself with build flags in files for go1.13.
"crypto/ed25519": struct{}{},
}

// FindPkg takes a package name and attempts to find it on the filesystem
Expand Down