From 5caf132ffa3cf766bd20ed8a226930b7ec6898a4 Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Thu, 12 Jan 2023 16:55:19 -0500 Subject: [PATCH] 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 golang/go#57769. Change-Id: I2bd8a505051e92348d49560ec698ed921f2c81be Reviewed-on: https://go-review.googlesource.com/c/go/+/461896 Reviewed-by: Bryan Mills TryBot-Result: Gopher Robot Reviewed-by: Filippo Valsorda Run-TryBot: Michael Pratt Reviewed-by: Cherry Mui Auto-Submit: Michael Pratt --- field/_asm/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/field/_asm/go.mod b/field/_asm/go.mod index ad1c3be..f4d14cb 100644 --- a/field/_asm/go.mod +++ b/field/_asm/go.mod @@ -1,4 +1,4 @@ -module asm +module std/crypto/internal/edwards25519/field/_asm go 1.18