update dependencies

This commit is contained in:
Mechiel Lukkien
2023-11-09 21:19:51 +01:00
parent 42f6f9cbb3
commit 8c99e54ec1
384 changed files with 779 additions and 1334 deletions

View File

@ -29,7 +29,6 @@ import (
"go/token"
"go/types"
"io"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
@ -221,7 +220,7 @@ func Import(packages map[string]*types.Package, path, srcDir string, lookup func
switch hdr {
case "$$B\n":
var data []byte
data, err = ioutil.ReadAll(buf)
data, err = io.ReadAll(buf)
if err != nil {
break
}