github.com/google/syzkaller@v0.0.0-20240517125934-c0f1611a36d6/pkg/tools/tools.go (about)

     1  // Copyright 2020 syzkaller project authors. All rights reserved.
     2  // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
     3  
     4  //go:build tools
     5  
     6  // tools is not a normal package, it's only purpose is tools dependency management.
     7  // It allows us to vendor all used tools, ensure that all contributors have the same versions of tools,
     8  // and have custom golangci-lint checkers.
     9  package tools
    10  
    11  import (
    12  	_ "github.com/dvyukov/go-fuzz/go-fuzz-build"
    13  	_ "github.com/dvyukov/go-fuzz/go-fuzz-dep"
    14  	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
    15  	_ "github.com/vektra/mockery/v2"
    16  )