Quick update to the v0.3 release fixing some issues with the initial version.
- Fixed the generated
Responder
impl to actually generate MessagePack responses when themsgpack
feature is enabled, and to not generate JSON responses when thejson
feature is disabled. (#1) - Fixed the generated
Responder
impl to check theAccept
header to determine what format to use for the response body. (#1)
Initial release supporting v0.3.x of Rocket. Provides support for deriving FromData
and
Responder
for any types that implement serde::Deserialize
and serde::Serialize
,
respectively. Also supports using both JSON and MessagePack formats for data transfer.