-
Cloudflare provides a Rust CLI tool to decrypt the data, which can be found here. In short it looks like this:
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
One, figure out the bincode format (documented here: https://github.com/bincode-org/bincode/blob/trunk/docs/spec.md) and write your own parser. Maybe a one-off that specifically only handles this one data structure would be fairly straightforward.
-
serde (https://serde.rs/) is a generic serialization framework to allow serialization of Rust structs into and from an arbitrary data format. It is not a fixed format, and its data model (https://serde.rs/data-model.html) is also not exclusive to Rust: A common case is to (de)serialize to/from json via the serde_json library.