-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from unidoc-build/prep-rc-v0.8.0
Release v0.8.0
- Loading branch information
Showing
9 changed files
with
556 additions
and
770 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,20 +1,46 @@ | ||
module github.com/unidoc/unihtml | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/adrg/strutil v0.3.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/viper v1.16.0 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/unidoc/unipdf/v3 v3.53.0 | ||
) | ||
|
||
require ( | ||
github.com/adrg/strutil v0.3.1 // indirect | ||
github.com/adrg/sysfont v0.1.2 // indirect | ||
github.com/adrg/xdg v0.4.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
github.com/spf13/cobra v1.1.1 | ||
github.com/spf13/viper v1.7.1 | ||
github.com/unidoc/unipdf/v3 v3.34.0 | ||
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // 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 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/gorilla/i18n v0.0.0-20150820051429-8b358169da46 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.1.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/unidoc/freetype v0.2.3 // indirect | ||
github.com/unidoc/pkcs7 v0.2.0 // indirect | ||
github.com/unidoc/timestamp v0.0.0-20200412005513-91597fd3793a // indirect | ||
github.com/unidoc/unichart v0.3.0 // indirect | ||
github.com/unidoc/unitype v0.4.0 // indirect | ||
golang.org/x/crypto v0.18.0 // indirect | ||
golang.org/x/image v0.15.0 // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.