You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
io/ioutil is deprecated in Go 1.16. Any code that uses code from this package needs to be changed to handle this. I think that Hare only uses ReadDir, but that will need to be confirmed.
Note from Go 1.16 changelog:
ReadDir => os.ReadDir (note: returns a slice of os.DirEntry rather than a slice of fs.FileInfo)
The text was updated successfully, but these errors were encountered:
io/ioutil is deprecated in Go 1.16. Any code that uses code from this package needs to be changed to handle this. I think that Hare only uses ReadDir, but that will need to be confirmed.
Note from Go 1.16 changelog:
ReadDir => os.ReadDir (note: returns a slice of os.DirEntry rather than a slice of fs.FileInfo)
The text was updated successfully, but these errors were encountered: