#bitflags #flags #bit #bitmask

no-std bitflags-serde-legacy

Implement serde traits for bitflags 2.x types compatibly with 1.x

2 releases

0.1.1 May 17, 2023
0.1.0 Feb 8, 2023

#1425 in Encoding

Download history 1691/week @ 2023-12-07 640/week @ 2023-12-14 310/week @ 2023-12-21 305/week @ 2023-12-28 587/week @ 2024-01-04 673/week @ 2024-01-11 1201/week @ 2024-01-18 941/week @ 2024-01-25 962/week @ 2024-02-01 951/week @ 2024-02-08 1348/week @ 2024-02-15 862/week @ 2024-02-22 323/week @ 2024-02-29 303/week @ 2024-03-07 735/week @ 2024-03-14 494/week @ 2024-03-21

1,886 downloads per month
Used in 11 crates (via zebra-chain)

MIT/Apache

10KB
117 lines

bitflags-serde-legacy

The serialization format used by bitflags! has changed between 1.x and 2.x. If you previously #[derive(Serialize, Deserialize], then you can use this library to maintain compatibility while upgrading.

Usage

You can either use this as a regular dependency, or pull the source into a private module in your project.

Add bitflags-serde-legacy to your Cargo.toml:

[dependencies.bitflags_serde_legacy]
version = "0.1.1"

Then, replace an existing #[derive(Serialize, Deserialize)] on your bitflags! generated types with the following manual implementations:

use bitflags::bitflags;

bitflags! {
    // #[derive(Serialize, Deserialize)]
    struct Flags: u32 {
        const A = 0b00000001;
        const B = 0b00000010;
        const C = 0b00000100;
        const ABC = Self::A.bits() | Self::B.bits() | Self::C.bits();
    }
}

impl serde::Serialize for Flags {
    fn serialize<S: serde::Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
        bitflags_serde_legacy::serialize(self, "Flags", serializer)
    }
}

impl<'de> serde::Deserialize<'de> for Flags {
    fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
        bitflags_serde_legacy::deserialize("Flags", deserializer)
    }
}

Dependencies

~210–475KB
~11K SLoC