mirror of
https://github.com/rwinkhart/go-winio.git
synced 2026-08-28 21:06:52 -04:00
Since Go version 1.13, the standard library has built-in support for wrapping and unwrapping of error values. This commit bumps the minimum version required by the module from 1.12 to 1.13, replaces all calls to errors.Wrap/f with fmt.Errorf and removes the now unneeded dependency on github.com/pkg/errors. Signed-off-by: Michael Hofmann <michael.hofmann@bitgestalt.com>
9 lines
147 B
AMPL
9 lines
147 B
AMPL
module github.com/Microsoft/go-winio
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/sirupsen/logrus v1.7.0
|
|
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
|
|
)
|