aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/tools
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-07-14 12:15:27 +0200
committerTaras Madan <tarasmadan@google.com>2025-07-14 10:30:37 +0000
commit8b172fa750588f9c0658f7271fb933dcc947ae2c (patch)
treebd223c223582ecef133ea532efa0bfa5d8e3fb7f /pkg/tools
parentd8fc733505f5adb1a84287028b9aabb4f8c56cf9 (diff)
pkg/tools: delete
Starting go1.24 we can use go get -tool. See https://tip.golang.org/doc/modules/managing-dependencies#tools .
Diffstat (limited to 'pkg/tools')
-rw-r--r--pkg/tools/empty.go6
-rw-r--r--pkg/tools/tools.go18
2 files changed, 0 insertions, 24 deletions
diff --git a/pkg/tools/empty.go b/pkg/tools/empty.go
deleted file mode 100644
index d5b3488ec..000000000
--- a/pkg/tools/empty.go
+++ /dev/null
@@ -1,6 +0,0 @@
-// Copyright 2021 syzkaller project authors. All rights reserved.
-// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
-
-package tools
-
-// Empty file to unbreak bazel+glaze build (tools.go is excluded by build constraints).
diff --git a/pkg/tools/tools.go b/pkg/tools/tools.go
deleted file mode 100644
index 66b0cb057..000000000
--- a/pkg/tools/tools.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2020 syzkaller project authors. All rights reserved.
-// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
-
-//go:build tools
-
-// tools is not a normal package, it's only purpose is tools dependency management.
-// It allows us to vendor all used tools, ensure that all contributors have the same versions of tools,
-// and have custom golangci-lint checkers.
-package tools
-
-import (
- _ "github.com/dvyukov/go-fuzz/go-fuzz-build"
- _ "github.com/dvyukov/go-fuzz/go-fuzz-dep"
- _ "github.com/golangci/golangci-lint/cmd/golangci-lint"
- _ "github.com/google/keep-sorted"
- _ "github.com/vektra/mockery/v2"
- _ "golang.org/x/tools/cmd/stringer"
-)