obake icon indicating copy to clipboard operation
obake copied to clipboard

Versioned data-structures for Rust

Results 4 obake issues
Sort by recently updated
recently updated
newest added

Hi! This library is so useful, but I'm failing to use it with `serde_json`. I've tried the following way: ```rust use serde_json::json; use obake; #[obake::versioned] #[obake(version("0.1.0"))] #[obake(version("0.2.0"))] #[obake(version("0.3.0"))] #[obake(derive(Debug, PartialEq,...

bug

The main use I'd have for this crate is to version config files (as described in the readme) but there doesn't currently appear to be a mechanism for attempting to...

Currently it doesn't seem to be possible to determine current version of a struct given a reference to a struct (clone() is not an option for the struct I have).