We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a69c56 commit bfaa1f2Copy full SHA for bfaa1f2
Cargo.toml
@@ -19,7 +19,9 @@ pest_derive = "2.0"
19
thiserror = "2.0.9"
20
21
[dev-dependencies]
22
+serde = { version = "1.0", features = ["derive"] }
23
criterion = "0.5.1"
24
+colored = "2"
25
26
[[bench]]
27
name = "regex"
src/fixtures/prepare.sh
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env bash
2
+
3
+# Use this script to download the RFC9535 compliance suite and prepare it for
4
+# use in tests.
5
6
+script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)
7
8
+url="https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/refs/heads/main/cts.json"
9
10
+curl -s $url | jq -r '.tests' > "$script_dir/rfc9535-cts.json"
0 commit comments