Jan Dittberner
f0d456dd13
- add a client generated command ID for tracing commands and responses - define protocol delimiter in protocol.CobsDelimiter - apply code simplifications suggested by golangci-lint - add Makefile - add compile time build information for signer binary - make sure that dependencies for msgpackgen survive go mod tidy - extract MsgPackHandler into its own file - add CRL number to fetch CRL response - remove port.Flush() to avoid removing written data before it reaches the client
26 lines
821 B
Modula-2
26 lines
821 B
Modula-2
module git.cacert.org/cacert-gosigner
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/ThalesIgnite/crypto11 v1.2.5
|
|
github.com/dave/jennifer v1.4.1
|
|
github.com/google/uuid v1.3.0
|
|
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/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
|
|
)
|