bincode 2.0.0-rc.2

A binary serialization / deserialization strategy for transforming structs into bytes and vice versa!
Documentation
#![cfg(feature = "derive")]

extern crate bincode as bincode_new;

// Make sure that the `bincode` crate exists, just symlink it to `core.
extern crate core as bincode;

#[derive(bincode_new::Encode)]
#[bincode(crate = "bincode_new")]
struct DeriveRenameTest {
    a: u32,
    b: u32,
}