-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
increase min Go version to 1.19 and bump golang.org/x/[email protected] (#135)
- Loading branch information
1 parent
ab693bd
commit e0a7210
Showing
4 changed files
with
44 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,45 @@ | ||
module code.sajari.com/docconv | ||
|
||
go 1.14 | ||
go 1.20 | ||
|
||
require ( | ||
cloud.google.com/go/errorreporting v0.2.0 | ||
github.com/JalfResi/justext v0.0.0-20170829062021-c0282dea7198 | ||
github.com/PuerkitoBio/goquery v1.5.1 // indirect | ||
github.com/advancedlogic/GoOse v0.0.0-20191112112754-e742535969c1 | ||
github.com/google/go-cmp v0.5.7 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/otiai10/gosseract/v2 v2.2.4 | ||
github.com/richardlehane/mscfb v1.0.3 | ||
github.com/richardlehane/msoleps v1.0.3 | ||
golang.org/x/net v0.7.0 | ||
google.golang.org/protobuf v1.28.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.100.2 // indirect | ||
cloud.google.com/go/compute v0.1.0 // indirect | ||
github.com/PuerkitoBio/goquery v1.5.1 // indirect | ||
github.com/andybalholm/cascadia v1.2.0 // indirect | ||
github.com/araddon/dateparse v0.0.0-20200409225146-d820a6159ab1 // indirect | ||
github.com/fatih/set v0.2.1 // indirect | ||
github.com/gigawattio/window v0.0.0-20180317192513-0f5467e35573 // indirect | ||
github.com/go-resty/resty/v2 v2.3.0 // indirect | ||
github.com/google/go-cmp v0.5.7 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.1 // indirect | ||
github.com/jaytaylor/html2text v0.0.0-20200412013138-3577fbdbcff7 // indirect | ||
github.com/levigross/exp-html v0.0.0-20120902181939-8df60c69a8f5 // indirect | ||
github.com/mattn/go-runewidth v0.0.9 // indirect | ||
github.com/olekukonko/tablewriter v0.0.4 // indirect | ||
github.com/otiai10/gosseract/v2 v2.2.4 | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/richardlehane/mscfb v1.0.3 | ||
github.com/richardlehane/msoleps v1.0.3 | ||
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 | ||
google.golang.org/protobuf v1.28.0 | ||
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
google.golang.org/api v0.67.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00 // indirect | ||
google.golang.org/grpc v1.44.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters