From 19340aea20881674d8d87d63101da19983c64479 Mon Sep 17 00:00:00 2001 From: SoniEx2 <endermoneymod@gmail.com> Date: Sat, 3 Sep 2022 21:23:44 -0300 Subject: [Project] Serde Transmute Transmute objects through Serde! This crate allows converting a value which can be serialized into a type which can be deserialized. --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..a8d8ceb --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Serde Transmute + +Transmute objects through serde! + +This crate allows converting a `Serialize` value into a `Deserialize` type. + +## Caveats + +The main caveat of note is that `Serialize` is not lifetime-aware, so the +`Deserialize` (or `DeserializeSeed`) cannot borrow from it. + +But we don't care because this crate was built to power parts of `datafu`. +And it's pretty good at that. -- cgit 1.4.1