From 7b8270c9c7f016abaf6ac605415795eb4ceb02bb Mon Sep 17 00:00:00 2001 From: Carolyn Van Slyck Date: Tue, 10 Sep 2019 12:18:38 -0500 Subject: [PATCH] Move dep override file Move the file into a package that no one imports. That way consumers of dep aren't forced to pick up dependencies listed in that file. --- pkg/{ => dep}/dep.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename pkg/{ => dep}/dep.go (97%) diff --git a/pkg/dep.go b/pkg/dep/dep.go similarity index 97% rename from pkg/dep.go rename to pkg/dep/dep.go index 4648b6822..0c1758aac 100644 --- a/pkg/dep.go +++ b/pkg/dep/dep.go @@ -1,4 +1,4 @@ -package pkg +package dep // These imports turn transitive dependencies into direct dependencies // so that we can control then using "constraint" in our dep manifest.