diff options
| author | Eyal Posener <[email protected]> | 2023-07-19 21:28:32 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-19 21:28:32 +0300 |
| commit | d752070d0fd288c4630d27948e0d658f1bb0b6fd (patch) | |
| tree | 6e08a342342d13c37434411b108a1fe5b9a16a88 /go.mod | |
| parent | 3f9152130d1c1e72ef5b0091380bfbeb7fafecf5 (diff) | |
| parent | 200c018481254444255dc0d90f1ad1bb7838d64a (diff) | |
Switch to Go 1.20 errors package
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -1,11 +1,16 @@ module github.com/posener/complete/v2 +go 1.20 + require ( bou.ke/monkey v1.0.2 - github.com/hashicorp/go-multierror v1.0.0 - github.com/posener/autogen v0.0.2 - github.com/posener/script v1.1.5 - github.com/stretchr/testify v1.4.0 + github.com/posener/autogen v0.0.3 + github.com/posener/script v1.2.0 + github.com/stretchr/testify v1.8.4 ) -go 1.13 +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) |
