-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies and build workflow
- Loading branch information
Showing
2 changed files
with
17 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
module github.com/reddec/trusted-cgi | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 | ||
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 | ||
github.com/golang-jwt/jwt v3.2.2+incompatible | ||
github.com/google/uuid v1.3.0 | ||
github.com/google/uuid v1.5.0 | ||
github.com/jessevdk/go-flags v1.5.0 | ||
github.com/reddec/dfq v0.0.0-20200905054932-718696ac508f | ||
github.com/reddec/jsonrpc2 v0.1.21 | ||
github.com/robfig/cron v1.2.0 | ||
github.com/stretchr/testify v1.5.1 | ||
github.com/tinylib/msgp v1.1.8 | ||
golang.org/x/crypto v0.4.0 | ||
github.com/tinylib/msgp v1.1.9 | ||
golang.org/x/crypto v0.17.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/gorilla/websocket v1.5.1 // indirect | ||
github.com/philhofer/fwd v1.1.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/sys v0.3.0 // indirect | ||
golang.org/x/term v0.3.0 // indirect | ||
golang.org/x/net v0.19.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/term v0.15.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.8 // indirect | ||
) |