From 741d0f19cc4b9416ea01ad63c670974e962a5412 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Sun, 10 Aug 2025 21:27:08 -0300 Subject: [PATCH] build: add serde dependencies for serialization support --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 553b1d8..89c8237 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,6 +40,9 @@ sha2 = "0.10.0" local-ip-address = "0.5.5" dns-lookup = "2.0.2" uzers = "0.11.3" +serde = { version = "1.0.219", features = ["derive"] } +serde_json = "1.0.142" +serde_yaml = "0.9.34" [dev-dependencies] tempfile = "3.3.0"