This commit is contained in:
2026-04-07 15:16:19 +03:00
parent 953b39d433
commit 0fa388abeb
25 changed files with 1370 additions and 38 deletions
+3
View File
@@ -37,6 +37,9 @@ fn value_to_json(val: &Value) -> serde_json::Value {
.collect();
serde_json::Value::Object(obj)
}
Value::List(list) => {
serde_json::Value::Array(list.iter().map(|v| value_to_json(v)).collect())
}
}
}