forked from qax-os/excelize
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Breaking changes: Go 1.18 and later required
- This made the GetPictureCell function support get embedded cell images - Update dependencies module - Update GitHub workflow - Update documentation for the AddChart function
- Loading branch information
Showing
8 changed files
with
93 additions
and
68 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
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,16 +1,22 @@ | ||
module github.com/xuri/excelize/v2 | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 | ||
github.com/richardlehane/mscfb v1.0.4 | ||
github.com/richardlehane/msoleps v1.0.3 // indirect | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/xuri/efp v0.0.0-20230802181842-ad255f2331ca | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/xuri/efp v0.0.0-20231025114914-d1ff6096ae53 | ||
github.com/xuri/nfp v0.0.0-20230919160717-d98342af3f05 | ||
golang.org/x/crypto v0.14.0 | ||
golang.org/x/image v0.11.0 | ||
golang.org/x/net v0.17.0 | ||
golang.org/x/text v0.13.0 | ||
golang.org/x/crypto v0.17.0 | ||
golang.org/x/image v0.14.0 | ||
golang.org/x/net v0.19.0 | ||
golang.org/x/text v0.14.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/richardlehane/msoleps v1.0.3 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // 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
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