-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* go mod tidy Signed-off-by: sriv <[email protected]> * remove toolchain directive from go.mod, golangci-lint does not like it Signed-off-by: sriv <[email protected]> * remove deprecated ioutil usages Signed-off-by: sriv <[email protected]> --------- Signed-off-by: sriv <[email protected]>
- Loading branch information
Showing
11 changed files
with
46 additions
and
2,321 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,20 +1,30 @@ | ||
module github.com/getgauge/html-report | ||
|
||
go 1.13 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/dmotylev/goproperties v0.0.0-20140630191356-7cbffbaada47 // indirect | ||
github.com/documize/html-diff v0.0.0-20160503140253-f61c192c7796 | ||
github.com/getgauge/common v0.0.0-20190514095629-619e107433ce | ||
github.com/getgauge/gauge-proto/go/gauge_messages v0.0.0-20240122132601-bb92eb77d703 | ||
github.com/go-check/check v0.0.0-20190902080502-41f04d3bba15 // indirect | ||
github.com/kylelemons/godebug v1.1.0 | ||
github.com/mb0/diff v0.0.0-20131118162322-d8d9a906c24d // indirect | ||
github.com/microcosm-cc/bluemonday v1.0.2 | ||
github.com/russross/blackfriday v1.5.2 | ||
github.com/tdewolff/minify/v2 v2.7.3 | ||
golang.org/x/net v0.20.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect | ||
google.golang.org/grpc v1.60.1 | ||
google.golang.org/protobuf v1.32.0 | ||
) | ||
|
||
require ( | ||
github.com/dmotylev/goproperties v0.0.0-20140630191356-7cbffbaada47 // indirect | ||
github.com/go-check/check v0.0.0-20190902080502-41f04d3bba15 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/mb0/diff v0.0.0-20131118162322-d8d9a906c24d // indirect | ||
github.com/rogpeppe/go-internal v1.9.0 // indirect | ||
github.com/tdewolff/parse/v2 v2.4.2 // 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 | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect | ||
) |
Oops, something went wrong.