diff --git a/go.mod b/go.mod index b6fc200..52137f2 100644 --- a/go.mod +++ b/go.mod @@ -2,5 +2,4 @@ module github.com/dependabot/vgotest go 1.12 -require rsc.io/qr v0.1.0 - +require rsc.io/qr v0.2.0 diff --git a/go.sum b/go.sum index 428df41..19a61d9 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -rsc.io/qr v0.1.0 h1:M/sAxsU2J5mlQ4W84Bxga2EgdQqOaAliipcjPmMUM5Q= -rsc.io/qr v0.1.0/go.mod h1:IF+uZjkb9fqyeF/4tlBoynqmQxUoPfWEKh921coOuXs= +rsc.io/qr v0.2.0 h1:6vBLea5/NRMVTz8V66gipeLycZMl/+UlFmk8DvqQ6WY= +rsc.io/qr v0.2.0/go.mod h1:IF+uZjkb9fqyeF/4tlBoynqmQxUoPfWEKh921coOuXs= diff --git a/vendor/modules.txt b/vendor/modules.txt index a5e593f..b60f9ee 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -1,4 +1,4 @@ -# rsc.io/qr v0.1.0 +# rsc.io/qr v0.2.0 rsc.io/qr rsc.io/qr/coding rsc.io/qr/gf256 diff --git a/vendor/rsc.io/qr/coding/qr.go b/vendor/rsc.io/qr/coding/qr.go index 4aa5288..bfc3ea4 100644 --- a/vendor/rsc.io/qr/coding/qr.go +++ b/vendor/rsc.io/qr/coding/qr.go @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. // Package coding implements low-level QR coding details. -package coding +package coding // import "rsc.io/qr/coding" import ( "fmt" diff --git a/vendor/rsc.io/qr/gf256/gf256.go b/vendor/rsc.io/qr/gf256/gf256.go index bfeeeb3..05e5645 100644 --- a/vendor/rsc.io/qr/gf256/gf256.go +++ b/vendor/rsc.io/qr/gf256/gf256.go @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. // Package gf256 implements arithmetic over the Galois Field GF(256). -package gf256 +package gf256 // import "rsc.io/qr/gf256" import "strconv" diff --git a/vendor/rsc.io/qr/go.mod b/vendor/rsc.io/qr/go.mod new file mode 100644 index 0000000..7fbfc86 --- /dev/null +++ b/vendor/rsc.io/qr/go.mod @@ -0,0 +1 @@ +module rsc.io/qr diff --git a/vendor/rsc.io/qr/qr.go b/vendor/rsc.io/qr/qr.go index 254b532..ace7e6f 100644 --- a/vendor/rsc.io/qr/qr.go +++ b/vendor/rsc.io/qr/qr.go @@ -5,7 +5,7 @@ /* Package qr encodes QR codes. */ -package qr +package qr // import "rsc.io/qr" import ( "errors"