From b8f1e3060fdebabab4ba512e7745d5e88c57ff68 Mon Sep 17 00:00:00 2001 From: lonerapier Date: Thu, 29 Aug 2024 03:31:47 +0530 Subject: [PATCH] handle conflicting files --- examples/json/test/value_array.json | 2 +- examples/json/test/value_array_object.json | 2 +- examples/json/test/value_object.json | 2 +- src/{bin/witness.rs => main.rs} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{bin/witness.rs => main.rs} (100%) diff --git a/examples/json/test/value_array.json b/examples/json/test/value_array.json index bd8d014..865f425 100644 --- a/examples/json/test/value_array.json +++ b/examples/json/test/value_array.json @@ -1 +1 @@ -{ "k" : [ 420 , 69 , 4200 , 600 ], "b": [ "ab" , "ba", "ccc", "d" ] } +{ "k" : [420,69] } \ No newline at end of file diff --git a/examples/json/test/value_array_object.json b/examples/json/test/value_array_object.json index a4f9ddc..2bbaec9 100644 --- a/examples/json/test/value_array_object.json +++ b/examples/json/test/value_array_object.json @@ -1 +1 @@ -{"a":[{"b":[1,4]},{"c":"b"}]} +{"a":[{"b":5},{"c":"b"}]} \ No newline at end of file diff --git a/examples/json/test/value_object.json b/examples/json/test/value_object.json index 335d6cf..dfaaba1 100644 --- a/examples/json/test/value_object.json +++ b/examples/json/test/value_object.json @@ -1 +1 @@ -{ "a": { "d" : "e", "e": "c" }, "e": { "f": "a", "e": "2" }, "g": { "h": { "a": "c" }} } +{ "a": { "b": "c" } } \ No newline at end of file diff --git a/src/bin/witness.rs b/src/main.rs similarity index 100% rename from src/bin/witness.rs rename to src/main.rs