From 8f3fd6f444bddf5c4bf72815a0469d80b1839451 Mon Sep 17 00:00:00 2001 From: Sumera Priyadarsini Date: Thu, 4 Sep 2025 13:33:47 +0530 Subject: [PATCH 1/2] data: mark json files as non-executable Signed-off-by: Sumera Priyadarsini --- data/github_events.json | 0 data/instruments.json | 0 data/mesh.json | 0 data/mesh.pretty.json | 0 data/random.json | 0 5 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 data/github_events.json mode change 100755 => 100644 data/instruments.json mode change 100755 => 100644 data/mesh.json mode change 100755 => 100644 data/mesh.pretty.json mode change 100755 => 100644 data/random.json diff --git a/data/github_events.json b/data/github_events.json old mode 100755 new mode 100644 diff --git a/data/instruments.json b/data/instruments.json old mode 100755 new mode 100644 diff --git a/data/mesh.json b/data/mesh.json old mode 100755 new mode 100644 diff --git a/data/mesh.pretty.json b/data/mesh.pretty.json old mode 100755 new mode 100644 diff --git a/data/random.json b/data/random.json old mode 100755 new mode 100644 From 02fd5c22dad08cec527283d1a4e36744640ebeb7 Mon Sep 17 00:00:00 2001 From: Sumera Priyadarsini Date: Thu, 4 Sep 2025 13:41:09 +0530 Subject: [PATCH 2/2] Exclude fuzz.sh from crate Signed-off-by: Sumera Priyadarsini --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0b08f994..fac2cc86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "simd-json" version = "0.16.0" authors = ["Heinz N. Gies ", "Sunny Gleason"] edition = "2024" -exclude = ["data/*", "fuzz/*"] +exclude = ["data/*", "fuzz/*", "fuzz.sh"] license = "Apache-2.0 OR MIT" description = "High performance JSON parser based on a port of simdjson" repository = "https://github.com/simd-lite/simd-json"