SPIRV-Tools/utils/vscode/go.mod
Ben Clayton d28186db93
Fixes for the vscode language server extension (#4150)
Fix URL to the `OpenCL.DebugInfo.100` grammar file, which moved from `SPIRV-Tools` to `SPIRV-Headers`.

Add a `go.mod` and `go.sum` file.
Go has now fully migrated to using modules, and relative imports no longer work.
Fixup all the relative imports to use a fully qualified path based on the module name.

Fix the `.exe` executable extension on windows.

Update the generated grammar files.

Update the `README.md` with more information.

Disable generation of the log file. Seems to end up in the workspaceDir on windows, not the executable path
2021-02-26 18:07:00 +00:00

9 lines
165 B
Modula-2

module github.com/KhronosGroup/SPIRV-Tools/utils/vscode
go 1.16
require (
github.com/pkg/errors v0.9.1
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
)