Jan Dittberner
2de592d30c
This commit changes the wire protocol to split between command announcement and command payload to allow proper typing of sent and received msgpack messages. CRL fetching has been implemented as second command after the existing health check command.
25 lines
802 B
Modula-2
25 lines
802 B
Modula-2
module git.cacert.org/cacert-gosigner
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/ThalesIgnite/crypto11 v1.2.5
|
|
github.com/justincpresley/go-cobs v1.2.0
|
|
github.com/shamaton/msgpackgen v0.3.0
|
|
github.com/sirupsen/logrus v1.9.0
|
|
github.com/stretchr/testify v1.8.0
|
|
github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07
|
|
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/dave/jennifer v1.4.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/miekg/pkcs11 v1.1.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/shamaton/msgpack/v2 v2.1.0 // indirect
|
|
github.com/thales-e-security/pool v0.0.2 // indirect
|
|
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
|
|
)
|