-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use experimental publiccode-parser-go v4
- Loading branch information
Showing
5 changed files
with
58 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
go 1.20 | ||
go 1.21 | ||
|
||
toolchain go1.21.7 | ||
|
||
use ./src/wasm |
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,27 +1,31 @@ | ||
module github.com/italia/publiccode-editor/wasm | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require github.com/italia/publiccode-parser-go/v3 v3.0.4 | ||
toolchain go1.21.7 | ||
|
||
require github.com/italia/publiccode-parser-go/v4 v4.0.0-20240227083024-c6380045750f | ||
|
||
require ( | ||
github.com/Jeffail/gabs v1.4.0 // indirect | ||
github.com/alranel/go-vcsurl/v2 v2.0.2 // indirect | ||
github.com/dyatlov/go-oembed v0.0.0-20191103150536-a57c85b3b37c // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.2 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.3 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/go-playground/validator/v10 v10.14.1 // indirect | ||
github.com/go-playground/validator/v10 v10.18.0 // indirect | ||
github.com/italia/httpclient-lib-go v0.0.1 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/kyoh86/go-spdx v0.0.5-0.20220518012447-4d195d3a5da1 // indirect | ||
github.com/leodido/go-urn v1.2.4 // indirect | ||
github.com/leodido/go-urn v1.4.0 // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
github.com/rogpeppe/go-internal v1.8.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/thoas/go-funk v0.9.3 // indirect | ||
github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80 // indirect | ||
golang.org/x/crypto v0.17.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/crypto v0.19.0 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // 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