mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 05:40:11 +01:00
* Factor JSON evaluation and construction base URLs out of of checker. * Move json path matching to util. * Add csaf_aggregator (as additional command) * Improve itest workflow to checkout the branch where it is running on. resolve #105 resolve #72 Co-authored-by: tschmidtb51 <65305130+tschmidtb51@users.noreply.github.com> Co-authored-by: Bernhard Reiter <bernhard@intevation.de> Co-authored-by: Fadi Abbud <fadi.abbud@intevation.de>
27 lines
985 B
Modula-2
27 lines
985 B
Modula-2
module github.com/csaf-poc/csaf_distribution
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v0.4.1
|
|
github.com/PaesslerAG/gval v1.1.2
|
|
github.com/PaesslerAG/jsonpath v0.1.1
|
|
github.com/ProtonMail/gopenpgp/v2 v2.3.0
|
|
github.com/gofrs/flock v0.8.1
|
|
github.com/jessevdk/go-flags v1.5.0
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/santhosh-tekuri/jsonschema/v5 v5.0.0
|
|
golang.org/x/crypto v0.0.0-20211202192323-5770296d904e
|
|
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8
|
|
)
|
|
|
|
require (
|
|
github.com/ProtonMail/go-crypto v0.0.0-20211112122917-428f8eabeeb3 // indirect
|
|
github.com/ProtonMail/go-mime v0.0.0-20190923161245-9b5a4261663a // indirect
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/sirupsen/logrus v1.4.2 // indirect
|
|
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
|
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
)
|