deepdiff-rs 0.3.0__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/Cargo.lock +3 -3
  2. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/Cargo.toml +1 -1
  3. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/PKG-INFO +5 -3
  4. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/README.md +4 -2
  5. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/Cargo.toml +0 -0
  6. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/examples/stack_frame_cost.rs +0 -0
  7. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/diff/array.rs +0 -0
  8. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/diff/dispatch.rs +0 -0
  9. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/diff/mod.rs +0 -0
  10. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/diff/object.rs +0 -0
  11. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/diff/options.rs +0 -0
  12. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/diff/scalar.rs +0 -0
  13. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/diff/tests.rs +0 -0
  14. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/error.rs +0 -0
  15. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/ignore_order/distance.rs +0 -0
  16. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/ignore_order/fxhash.rs +0 -0
  17. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/ignore_order/hash.rs +0 -0
  18. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/ignore_order/memo.rs +0 -0
  19. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/ignore_order/mod.rs +0 -0
  20. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/ignore_order/pairing.rs +0 -0
  21. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/ignore_order/tests.rs +0 -0
  22. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/lcs.rs +0 -0
  23. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/lcs_tests.rs +0 -0
  24. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/lib.rs +0 -0
  25. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/path.rs +0 -0
  26. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/report.rs +0 -0
  27. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/report_tests.rs +0 -0
  28. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/test_support.rs +0 -0
  29. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/value.rs +0 -0
  30. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/src/value_tests.rs +0 -0
  31. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/tests/golden.rs +0 -0
  32. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/tests/memory_footprint.rs +0 -0
  33. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/tests/proptest_diff.rs +0 -0
  34. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-core/tests/proptest_ignore_order.rs +0 -0
  35. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/Cargo.toml +0 -0
  36. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/benchmarks/bench_bindings.py +0 -0
  37. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/src/convert.rs +0 -0
  38. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/src/deepdiff.rs +0 -0
  39. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/src/errors.rs +0 -0
  40. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/src/fast_path.rs +0 -0
  41. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/src/guard.rs +0 -0
  42. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/src/lib.rs +0 -0
  43. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/tests/test_bindings_memory.py +0 -0
  44. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/tests/test_conversions.py +0 -0
  45. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/tests/test_depth_guard.py +0 -0
  46. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/tests/test_differential_fuzz.py +0 -0
  47. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/tests/test_golden_parity.py +0 -0
  48. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/tests/test_signed_zero.py +0 -0
  49. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/crates/onix-py/tests/test_smoke.py +0 -0
  50. {deepdiff_rs-0.3.0 → deepdiff_rs-0.3.1}/pyproject.toml +0 -0
@@ -127,7 +127,7 @@ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
127
127
 
128
128
  [[package]]
129
129
  name = "onix-cli"
130
- version = "0.3.0"
130
+ version = "0.3.1"
131
131
  dependencies = [
132
132
  "onix-core",
133
133
  "serde_json",
@@ -135,7 +135,7 @@ dependencies = [
135
135
 
136
136
  [[package]]
137
137
  name = "onix-core"
138
- version = "0.3.0"
138
+ version = "0.3.1"
139
139
  dependencies = [
140
140
  "proptest",
141
141
  "serde",
@@ -145,7 +145,7 @@ dependencies = [
145
145
 
146
146
  [[package]]
147
147
  name = "onix-py"
148
- version = "0.3.0"
148
+ version = "0.3.1"
149
149
  dependencies = [
150
150
  "onix-core",
151
151
  "pyo3",
@@ -3,7 +3,7 @@ resolver = "3"
3
3
  members = ["crates/onix-core", "crates/onix-py"]
4
4
 
5
5
  [workspace.package]
6
- version = "0.3.0"
6
+ version = "0.3.1"
7
7
  edition = "2024"
8
8
  license = "MIT"
9
9
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deepdiff-rs
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Programming Language :: Rust
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -17,7 +17,9 @@ Project-URL: Repository, https://github.com/ksco92/onix
17
17
  # deepdiff-rs
18
18
 
19
19
  [![CI](https://img.shields.io/github/actions/workflow/status/ksco92/onix/check.yml?branch=main&label=CI)](https://github.com/ksco92/onix/actions/workflows/check.yml)
20
+ [![coverage](https://codecov.io/gh/ksco92/onix/branch/main/graph/badge.svg)](https://codecov.io/gh/ksco92/onix)
20
21
  [![PyPI](https://img.shields.io/pypi/v/deepdiff-rs.svg)](https://pypi.org/project/deepdiff-rs/)
22
+ [![downloads](https://img.shields.io/pypi/dm/deepdiff-rs.svg)](https://pypi.org/project/deepdiff-rs/)
21
23
  [![license](https://img.shields.io/github/license/ksco92/onix.svg)](LICENSE)
22
24
  [![last commit](https://img.shields.io/github/last-commit/ksco92/onix.svg)](https://github.com/ksco92/onix/commits/main)
23
25
 
@@ -25,7 +27,7 @@ Project-URL: Repository, https://github.com/ksco92/onix
25
27
 
26
28
  `deepdiff-rs` reads live Python objects (or JSON) and produces the exact same report [DeepDiff](https://github.com/seperman/deepdiff) does at `verbose_level=2`, so it slots into code that already parses DeepDiff output while running dramatically faster on large or deeply nested inputs.
27
29
 
28
- Status (September 2026): pre-alpha proof of concept. Ordered and `ignore_order` diffing are complete, differentially tested against real DeepDiff 9.1.0, and [benchmarked](perf/RESULTS.md); `deepdiff-rs` is published to PyPI, the `onix` CLI builds and runs from source, and nothing is on crates.io yet.
30
+ Status (September 2026): `deepdiff-rs` 0.x is live on PyPI (Python 3.9+, wheels for Linux x86_64/aarch64, macOS arm64/x86_64, and Windows x64, plus an sdist); the `onix` CLI builds from source, and nothing is on crates.io yet. Ordered and `ignore_order` diffing are complete, differentially tested against real DeepDiff 9.1.0, and [benchmarked](perf/RESULTS.md). It is 0.x, not stable or 1.0: the API may still change before 1.0.
29
31
 
30
32
  ## Table of contents
31
33
 
@@ -194,7 +196,7 @@ perf/ # cross-language benchmark harness and RESULTS.md
194
196
 
195
197
  ## Contributing
196
198
 
197
- This is a pre-alpha proof of concept and issues and pull requests are welcome. Open an issue to report a bug, a DeepDiff divergence (include both inputs and the report each engine produces), or a question. Building from source, the quality gates, the golden corpus, benchmarking, mutation testing, and publishing are all in [CONTRIBUTING.md](CONTRIBUTING.md).
199
+ Issues and pull requests are welcome. Open an issue to report a bug, a DeepDiff divergence (include both inputs and the report each engine produces), or a question. Building from source, the quality gates, the golden corpus, benchmarking, mutation testing, and publishing are all in [CONTRIBUTING.md](CONTRIBUTING.md).
198
200
 
199
201
  ## License
200
202
 
@@ -1,7 +1,9 @@
1
1
  # deepdiff-rs
2
2
 
3
3
  [![CI](https://img.shields.io/github/actions/workflow/status/ksco92/onix/check.yml?branch=main&label=CI)](https://github.com/ksco92/onix/actions/workflows/check.yml)
4
+ [![coverage](https://codecov.io/gh/ksco92/onix/branch/main/graph/badge.svg)](https://codecov.io/gh/ksco92/onix)
4
5
  [![PyPI](https://img.shields.io/pypi/v/deepdiff-rs.svg)](https://pypi.org/project/deepdiff-rs/)
6
+ [![downloads](https://img.shields.io/pypi/dm/deepdiff-rs.svg)](https://pypi.org/project/deepdiff-rs/)
5
7
  [![license](https://img.shields.io/github/license/ksco92/onix.svg)](LICENSE)
6
8
  [![last commit](https://img.shields.io/github/last-commit/ksco92/onix.svg)](https://github.com/ksco92/onix/commits/main)
7
9
 
@@ -9,7 +11,7 @@
9
11
 
10
12
  `deepdiff-rs` reads live Python objects (or JSON) and produces the exact same report [DeepDiff](https://github.com/seperman/deepdiff) does at `verbose_level=2`, so it slots into code that already parses DeepDiff output while running dramatically faster on large or deeply nested inputs.
11
13
 
12
- Status (September 2026): pre-alpha proof of concept. Ordered and `ignore_order` diffing are complete, differentially tested against real DeepDiff 9.1.0, and [benchmarked](perf/RESULTS.md); `deepdiff-rs` is published to PyPI, the `onix` CLI builds and runs from source, and nothing is on crates.io yet.
14
+ Status (September 2026): `deepdiff-rs` 0.x is live on PyPI (Python 3.9+, wheels for Linux x86_64/aarch64, macOS arm64/x86_64, and Windows x64, plus an sdist); the `onix` CLI builds from source, and nothing is on crates.io yet. Ordered and `ignore_order` diffing are complete, differentially tested against real DeepDiff 9.1.0, and [benchmarked](perf/RESULTS.md). It is 0.x, not stable or 1.0: the API may still change before 1.0.
13
15
 
14
16
  ## Table of contents
15
17
 
@@ -178,7 +180,7 @@ perf/ # cross-language benchmark harness and RESULTS.md
178
180
 
179
181
  ## Contributing
180
182
 
181
- This is a pre-alpha proof of concept and issues and pull requests are welcome. Open an issue to report a bug, a DeepDiff divergence (include both inputs and the report each engine produces), or a question. Building from source, the quality gates, the golden corpus, benchmarking, mutation testing, and publishing are all in [CONTRIBUTING.md](CONTRIBUTING.md).
183
+ Issues and pull requests are welcome. Open an issue to report a bug, a DeepDiff divergence (include both inputs and the report each engine produces), or a question. Building from source, the quality gates, the golden corpus, benchmarking, mutation testing, and publishing are all in [CONTRIBUTING.md](CONTRIBUTING.md).
182
184
 
183
185
  ## License
184
186
 
File without changes