aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2023-01-12 16:55:19 -0500
committerGopher Robot <gobot@golang.org>2023-01-30 15:19:45 +0000
commitf2a2600860ebcd1b86a0d8b67308da0a3fa673f0 (patch)
treebce2d9b6b7f8e2ebfc90911e41caafba42cf0522 /src/crypto
parent9e45b1d53e4f4c19863bb36276e019b96b8764c0 (diff)
downloadgo-f2a2600860ebcd1b86a0d8b67308da0a3fa673f0.tar.xz
all: give nested modules fully-qualified names
The two crypto modules are both named "asm". If both are included in a single go.work (e.g., from `go work use -r .` in the repo), builds break from "module asm appears multiple times in workspace". Give these modules fully-qualified names to avoid conflicts. While we are here, also expand the name of two other testdata modules. Those modules don't currently conflict, but they have vague names at risk of future conflicts. Fixes #57769. Change-Id: I2bd8a505051e92348d49560ec698ed921f2c81be Reviewed-on: https://go-review.googlesource.com/c/go/+/461896 Reviewed-by: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org> Run-TryBot: Michael Pratt <mpratt@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Michael Pratt <mpratt@google.com>
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/internal/bigmod/_asm/go.mod2
-rw-r--r--src/crypto/internal/edwards25519/field/_asm/go.mod2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/internal/bigmod/_asm/go.mod b/src/crypto/internal/bigmod/_asm/go.mod
index 1ce2b5e465..7600a4abbe 100644
--- a/src/crypto/internal/bigmod/_asm/go.mod
+++ b/src/crypto/internal/bigmod/_asm/go.mod
@@ -1,4 +1,4 @@
-module asm
+module std/crypto/internal/bigmod/_asm
go 1.19
diff --git a/src/crypto/internal/edwards25519/field/_asm/go.mod b/src/crypto/internal/edwards25519/field/_asm/go.mod
index 1ce2b5e465..24ad644f76 100644
--- a/src/crypto/internal/edwards25519/field/_asm/go.mod
+++ b/src/crypto/internal/edwards25519/field/_asm/go.mod
@@ -1,4 +1,4 @@
-module asm
+module std/crypto/internal/edwards25519/field/_asm
go 1.19