-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
27 lines (24 loc) · 974 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module github.com/mgmeyers/pdfannots2json
go 1.18
require (
github.com/alecthomas/kong v0.5.0
github.com/golang/geo v0.0.0-20210211234256-740aa86cb551
github.com/lucasb-eyer/go-colorful v1.2.0
github.com/mgmeyers/go-fitz v1.19.2
github.com/mgmeyers/unipdf/v3 v3.9.0-1
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/softlandia/cpd v1.0.0 // indirect
github.com/stretchr/testify v1.7.1 // indirect
github.com/unidoc/unitype v0.2.1 // indirect
golang.org/x/image v0.0.0-20220413100746-70e8d0d3baa9 // indirect
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)