summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2022-07-02 13:00:59 -0600
committerLuke Shumaker <lukeshu@lukeshu.com>2022-07-02 13:00:59 -0600
commit249500e0b88aea7ce77fa0720a207f303e6ceabf (patch)
tree27591416132abb9c808b58f927c513a3ee4e2d7a /go.mod
parent9c581316735f78c4fec9787aa4fd8635398b4c51 (diff)
multi error
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod4
1 files changed, 3 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 9aa3e50..07ce874 100644
--- a/go.mod
+++ b/go.mod
@@ -3,13 +3,15 @@ module lukeshu.com/btrfs-tools
go 1.18
require (
- github.com/davecgh/go-spew v1.1.0
+ github.com/datawire/dlib v1.3.0
+ github.com/davecgh/go-spew v1.1.1
github.com/stretchr/testify v1.7.1
golang.org/x/exp v0.0.0-20220518171630-0b5c67f07fdf
golang.org/x/text v0.3.7
)
require (
+ github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)