aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--go.mod2
-rw-r--r--pkg/ascii/ascii.go3
2 files changed, 3 insertions, 2 deletions
diff --git a/go.mod b/go.mod
index 9e00d6f..de3603c 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,3 @@
module git.sigsum.org/sigsum-lib-go
-go 1.14
+go 1.15
diff --git a/pkg/ascii/ascii.go b/pkg/ascii/ascii.go
index 350890c..3521d7d 100644
--- a/pkg/ascii/ascii.go
+++ b/pkg/ascii/ascii.go
@@ -23,6 +23,7 @@ import (
"bytes"
"fmt"
"io"
+ "io/ioutil"
"reflect"
"strconv"
"strings"
@@ -146,7 +147,7 @@ func (e *Encoding) Deserialize(r io.Reader, i interface{}) error {
return err
}
- buf, err := io.ReadAll(r)
+ buf, err := ioutil.ReadAll(r)
if err != nil {
return fmt.Errorf("ascii: failed reading incoming buffer")
}