From 3178ae580a3fe97d6a1167b4346d209f04e9b7e3 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Fri, 24 Jun 2022 10:41:37 -0700 Subject: Implement bufio.Scanner for transaction parsing --- go.mod | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 737889a..59a4967 100644 --- a/go.mod +++ b/go.mod @@ -17,12 +17,16 @@ require ( github.com/gdamore/encoding v1.0.0 // indirect github.com/go-playground/locales v0.14.0 // indirect github.com/go-playground/universal-translator v0.18.0 // indirect + github.com/kr/pretty v0.3.0 // indirect + github.com/kr/text v0.2.0 // indirect github.com/leodido/go-urn v1.2.1 // indirect github.com/lucasb-eyer/go-colorful v1.2.0 // indirect github.com/mattn/go-runewidth v0.0.13 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rivo/uniseg v0.2.0 // indirect + github.com/rogpeppe/go-internal v1.8.0 // indirect + github.com/ryboe/q v1.0.16 // indirect github.com/stretchr/objx v0.4.0 // indirect go.uber.org/atomic v1.9.0 // indirect go.uber.org/multierr v1.8.0 // indirect -- cgit