From 19340aea20881674d8d87d63101da19983c64479 Mon Sep 17 00:00:00 2001 From: SoniEx2 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. --- Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..9fc580e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "serde_transmute" +version = "0.1.0" +edition = "2021" +description = "Transmute objects through serde." +license = "MIT OR Apache-2.0" +repository = "https://soniex2.autistic.space/git-repos/serde_transmute.git" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +serde = "1.0.144" + +[dev-dependencies] +serde = {version = "1.0.144", features = ["derive"]} -- cgit 1.4.1