sumdb/note: remove dependency on golang.org/x/crypto/ed25519

The golang.org/x/crypto/ed25519 package has been part of stdlib since go1.13:

> Beginning with Go 1.13, the functionality of this package was moved to the
> standard library as crypto/ed25519. This package only acts as a compatibility
> wrapper.

This patch removes the dependency in favor of using stdlib.

Change-Id: I6e29a775177894d6291567bd9f8f4081a7cf8614
GitHub-Last-Rev: b0137d0ad009ecb955e4adbcf351893a24990e77
GitHub-Pull-Request: golang/mod#15
Reviewed-on: https://go-review.googlesource.com/c/mod/+/448236
Reviewed-by: Bryan Mills <bcmills@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Run-TryBot: Bryan Mills <bcmills@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Bryan Mills <bcmills@google.com>
4 files changed
tree: e63c30bf83838d762ec6621e93ede1e9b904c948
  1. gosumcheck/
  2. internal/
  3. modfile/
  4. module/
  5. semver/
  6. sumdb/
  7. zip/
  8. codereview.cfg
  9. go.mod
  10. go.sum
  11. LICENSE
  12. PATENTS
  13. README.md
README.md

mod

PkgGoDev

This repository holds packages for writing tools that work directly with Go module mechanics. That is, it is for direct manipulation of Go modules themselves.

It is NOT about supporting general development tools that need to do things like load packages in module mode. That use case, where modules are incidental rather than the focus, should remain in x/tools, specifically x/tools/go/packages.

The specific case of loading packages should still be done by invoking the go command, which remains the single point of truth for package loading algorithms.