dylanhart / ulid-rs

This is a Rust implementation of the ulid project
https://crates.io/crates/ulid
MIT License
389 stars 37 forks source link

Add support for Encode and Decode traits from both bincode and bitcode #77

Open PrismaPhonic opened 8 months ago

PrismaPhonic commented 8 months ago

Bincode and bitcode both have their own Encode and Decode traits that they would prefer users use over serde Serialize and Deserialize.

I would propose that these be implemented with a feature of bincode for the bincode versions and bitcode for the bitcode versions.

I would be happy to design this and send over a PR