commit | 7c05a442b7c1d1a107879b4a090bb5a38d3774a1 | [log] [tgz] |
---|---|---|
author | Sebastiaan van Stijn <github@gone.nl> | Sun Nov 06 14:22:52 2022 +0000 |
committer | Gopher Robot <gobot@golang.org> | Tue Nov 08 21:31:42 2022 +0000 |
tree | e63c30bf83838d762ec6621e93ede1e9b904c948 | |
parent | b3066c3a67d8fdd8d86771626cb76efaac967f4a [diff] |
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>
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.