Releases: trussed-dev/ctaphid-dispatch
Releases · trussed-dev/ctaphid-dispatch
ctaphid-dispatch v0.3.0
- Make
Dispatch
generic over the buffer size, renameMESSAGE_SIZE
toDEFAULT_MESSAGE_SIZE
, remove theMessage
type and add aDefaultDispatch
type alias forDispatch<_, _, DEFAULT_MESSAGE_SIZE>
.
v0.2.0
Changelog
- Optimize stack usage of
Dispatch::poll
- Replace
trussed
dependency withtrussed-core
. - Replace
heapless
dependency withheapless-bytes
. - Move the
app
andcommand
modules into a separate crate,ctaphid-app
, and re-export it. - Make
App
trait generic over the response size. - Remove unused
ShortMessage
type. - Flatten the public module structure and remove unnecessary re-exports.
ctaphid-app v0.1.0
Initial release that extracts the app
and command
modules from ctaphid-dispatch
0.1 into a separate crate.
ctaphid-app v0.1.0-rc.1
Changelog
- Extract
app
andcommand
modules fromctaphid-dispatch
0.1 into a separate crate.