deepdiff-rs 0.3.0__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.
- deepdiff_rs-0.3.0/Cargo.lock +515 -0
- deepdiff_rs-0.3.0/Cargo.toml +18 -0
- deepdiff_rs-0.3.0/PKG-INFO +202 -0
- deepdiff_rs-0.3.0/README.md +185 -0
- deepdiff_rs-0.3.0/crates/onix-core/Cargo.toml +18 -0
- deepdiff_rs-0.3.0/crates/onix-core/examples/stack_frame_cost.rs +121 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/diff/array.rs +359 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/diff/dispatch.rs +242 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/diff/mod.rs +231 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/diff/object.rs +133 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/diff/options.rs +256 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/diff/scalar.rs +168 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/diff/tests.rs +1855 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/error.rs +92 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/ignore_order/distance.rs +575 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/ignore_order/fxhash.rs +121 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/ignore_order/hash.rs +165 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/ignore_order/memo.rs +105 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/ignore_order/mod.rs +310 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/ignore_order/pairing.rs +194 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/ignore_order/tests.rs +1309 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/lcs.rs +377 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/lcs_tests.rs +493 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/lib.rs +120 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/path.rs +241 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/report.rs +553 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/report_tests.rs +486 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/test_support.rs +40 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/value.rs +716 -0
- deepdiff_rs-0.3.0/crates/onix-core/src/value_tests.rs +424 -0
- deepdiff_rs-0.3.0/crates/onix-core/tests/golden.rs +209 -0
- deepdiff_rs-0.3.0/crates/onix-core/tests/memory_footprint.rs +83 -0
- deepdiff_rs-0.3.0/crates/onix-core/tests/proptest_diff.rs +597 -0
- deepdiff_rs-0.3.0/crates/onix-core/tests/proptest_ignore_order.rs +127 -0
- deepdiff_rs-0.3.0/crates/onix-py/Cargo.toml +32 -0
- deepdiff_rs-0.3.0/crates/onix-py/benchmarks/bench_bindings.py +524 -0
- deepdiff_rs-0.3.0/crates/onix-py/src/convert.rs +545 -0
- deepdiff_rs-0.3.0/crates/onix-py/src/deepdiff.rs +141 -0
- deepdiff_rs-0.3.0/crates/onix-py/src/errors.rs +26 -0
- deepdiff_rs-0.3.0/crates/onix-py/src/fast_path.rs +65 -0
- deepdiff_rs-0.3.0/crates/onix-py/src/guard.rs +312 -0
- deepdiff_rs-0.3.0/crates/onix-py/src/lib.rs +40 -0
- deepdiff_rs-0.3.0/crates/onix-py/tests/test_bindings_memory.py +92 -0
- deepdiff_rs-0.3.0/crates/onix-py/tests/test_conversions.py +144 -0
- deepdiff_rs-0.3.0/crates/onix-py/tests/test_depth_guard.py +375 -0
- deepdiff_rs-0.3.0/crates/onix-py/tests/test_differential_fuzz.py +147 -0
- deepdiff_rs-0.3.0/crates/onix-py/tests/test_golden_parity.py +88 -0
- deepdiff_rs-0.3.0/crates/onix-py/tests/test_signed_zero.py +68 -0
- deepdiff_rs-0.3.0/crates/onix-py/tests/test_smoke.py +9 -0
- deepdiff_rs-0.3.0/pyproject.toml +45 -0
|
@@ -0,0 +1,515 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "autocfg"
|
|
7
|
+
version = "1.5.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "bit-set"
|
|
13
|
+
version = "0.8.0"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"bit-vec",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "bit-vec"
|
|
22
|
+
version = "0.8.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "bitflags"
|
|
28
|
+
version = "2.13.1"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "cfg-if"
|
|
34
|
+
version = "1.0.4"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "errno"
|
|
40
|
+
version = "0.3.14"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"libc",
|
|
45
|
+
"windows-sys",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "fastrand"
|
|
50
|
+
version = "2.5.0"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "fnv"
|
|
56
|
+
version = "1.0.7"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "getrandom"
|
|
62
|
+
version = "0.3.4"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"cfg-if",
|
|
67
|
+
"libc",
|
|
68
|
+
"r-efi 5.3.0",
|
|
69
|
+
"wasip2",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "getrandom"
|
|
74
|
+
version = "0.4.3"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
77
|
+
dependencies = [
|
|
78
|
+
"cfg-if",
|
|
79
|
+
"libc",
|
|
80
|
+
"r-efi 6.0.0",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "heck"
|
|
85
|
+
version = "0.5.0"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "itoa"
|
|
91
|
+
version = "1.0.18"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "libc"
|
|
97
|
+
version = "0.2.189"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "linux-raw-sys"
|
|
103
|
+
version = "0.12.1"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "memchr"
|
|
109
|
+
version = "2.8.3"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "num-traits"
|
|
115
|
+
version = "0.2.19"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
118
|
+
dependencies = [
|
|
119
|
+
"autocfg",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "once_cell"
|
|
124
|
+
version = "1.21.4"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "onix-cli"
|
|
130
|
+
version = "0.3.0"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"onix-core",
|
|
133
|
+
"serde_json",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "onix-core"
|
|
138
|
+
version = "0.3.0"
|
|
139
|
+
dependencies = [
|
|
140
|
+
"proptest",
|
|
141
|
+
"serde",
|
|
142
|
+
"serde_json",
|
|
143
|
+
"stats_alloc",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "onix-py"
|
|
148
|
+
version = "0.3.0"
|
|
149
|
+
dependencies = [
|
|
150
|
+
"onix-core",
|
|
151
|
+
"pyo3",
|
|
152
|
+
"serde_json",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "portable-atomic"
|
|
157
|
+
version = "1.15.0"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "ppv-lite86"
|
|
163
|
+
version = "0.2.21"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"zerocopy",
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "proc-macro2"
|
|
172
|
+
version = "1.0.107"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"unicode-ident",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "proptest"
|
|
181
|
+
version = "1.11.0"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"bit-set",
|
|
186
|
+
"bit-vec",
|
|
187
|
+
"bitflags",
|
|
188
|
+
"num-traits",
|
|
189
|
+
"rand",
|
|
190
|
+
"rand_chacha",
|
|
191
|
+
"rand_xorshift",
|
|
192
|
+
"regex-syntax",
|
|
193
|
+
"rusty-fork",
|
|
194
|
+
"tempfile",
|
|
195
|
+
"unarray",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "pyo3"
|
|
200
|
+
version = "0.29.2"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"libc",
|
|
205
|
+
"once_cell",
|
|
206
|
+
"portable-atomic",
|
|
207
|
+
"pyo3-build-config",
|
|
208
|
+
"pyo3-ffi",
|
|
209
|
+
"pyo3-macros",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "pyo3-build-config"
|
|
214
|
+
version = "0.29.2"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"target-lexicon",
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "pyo3-ffi"
|
|
223
|
+
version = "0.29.2"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
226
|
+
dependencies = [
|
|
227
|
+
"libc",
|
|
228
|
+
"pyo3-build-config",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "pyo3-macros"
|
|
233
|
+
version = "0.29.2"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"proc-macro2",
|
|
238
|
+
"pyo3-macros-backend",
|
|
239
|
+
"quote",
|
|
240
|
+
"syn 2.0.119",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "pyo3-macros-backend"
|
|
245
|
+
version = "0.29.2"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"heck",
|
|
250
|
+
"proc-macro2",
|
|
251
|
+
"quote",
|
|
252
|
+
"syn 2.0.119",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "quick-error"
|
|
257
|
+
version = "1.2.3"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "quote"
|
|
263
|
+
version = "1.0.47"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"proc-macro2",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "r-efi"
|
|
272
|
+
version = "5.3.0"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "r-efi"
|
|
278
|
+
version = "6.0.0"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "rand"
|
|
284
|
+
version = "0.9.5"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"rand_chacha",
|
|
289
|
+
"rand_core",
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "rand_chacha"
|
|
294
|
+
version = "0.9.0"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"ppv-lite86",
|
|
299
|
+
"rand_core",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "rand_core"
|
|
304
|
+
version = "0.9.5"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"getrandom 0.3.4",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "rand_xorshift"
|
|
313
|
+
version = "0.4.0"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"rand_core",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "regex-syntax"
|
|
322
|
+
version = "0.8.11"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "rustix"
|
|
328
|
+
version = "1.1.4"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"bitflags",
|
|
333
|
+
"errno",
|
|
334
|
+
"libc",
|
|
335
|
+
"linux-raw-sys",
|
|
336
|
+
"windows-sys",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "rusty-fork"
|
|
341
|
+
version = "0.3.1"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"fnv",
|
|
346
|
+
"quick-error",
|
|
347
|
+
"tempfile",
|
|
348
|
+
"wait-timeout",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "serde"
|
|
353
|
+
version = "1.0.229"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"serde_core",
|
|
358
|
+
]
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "serde_core"
|
|
362
|
+
version = "1.0.229"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
365
|
+
dependencies = [
|
|
366
|
+
"serde_derive",
|
|
367
|
+
]
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "serde_derive"
|
|
371
|
+
version = "1.0.229"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
374
|
+
dependencies = [
|
|
375
|
+
"proc-macro2",
|
|
376
|
+
"quote",
|
|
377
|
+
"syn 3.0.4",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "serde_json"
|
|
382
|
+
version = "1.0.151"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"itoa",
|
|
387
|
+
"memchr",
|
|
388
|
+
"serde",
|
|
389
|
+
"serde_core",
|
|
390
|
+
"zmij",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "stats_alloc"
|
|
395
|
+
version = "0.1.10"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "5c0e04424e733e69714ca1bbb9204c1a57f09f5493439520f9f68c132ad25eec"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "syn"
|
|
401
|
+
version = "2.0.119"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
404
|
+
dependencies = [
|
|
405
|
+
"proc-macro2",
|
|
406
|
+
"quote",
|
|
407
|
+
"unicode-ident",
|
|
408
|
+
]
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "syn"
|
|
412
|
+
version = "3.0.4"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"proc-macro2",
|
|
417
|
+
"quote",
|
|
418
|
+
"unicode-ident",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "target-lexicon"
|
|
423
|
+
version = "0.13.5"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "tempfile"
|
|
429
|
+
version = "3.27.0"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"fastrand",
|
|
434
|
+
"getrandom 0.4.3",
|
|
435
|
+
"once_cell",
|
|
436
|
+
"rustix",
|
|
437
|
+
"windows-sys",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "unarray"
|
|
442
|
+
version = "0.1.4"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "unicode-ident"
|
|
448
|
+
version = "1.0.24"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "wait-timeout"
|
|
454
|
+
version = "0.2.1"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"libc",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "wasip2"
|
|
463
|
+
version = "1.0.4+wasi-0.2.12"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"wit-bindgen",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "windows-link"
|
|
472
|
+
version = "0.2.1"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "windows-sys"
|
|
478
|
+
version = "0.61.2"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"windows-link",
|
|
483
|
+
]
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "wit-bindgen"
|
|
487
|
+
version = "0.57.1"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "zerocopy"
|
|
493
|
+
version = "0.8.56"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"zerocopy-derive",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "zerocopy-derive"
|
|
502
|
+
version = "0.8.56"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"proc-macro2",
|
|
507
|
+
"quote",
|
|
508
|
+
"syn 2.0.119",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "zmij"
|
|
513
|
+
version = "1.0.23"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[workspace]
|
|
2
|
+
resolver = "3"
|
|
3
|
+
members = ["crates/onix-core", "crates/onix-py"]
|
|
4
|
+
|
|
5
|
+
[workspace.package]
|
|
6
|
+
version = "0.3.0"
|
|
7
|
+
edition = "2024"
|
|
8
|
+
license = "MIT"
|
|
9
|
+
|
|
10
|
+
[workspace.lints.clippy]
|
|
11
|
+
pedantic = { level = "warn", priority = -1 }
|
|
12
|
+
|
|
13
|
+
[profile.release]
|
|
14
|
+
lto = true
|
|
15
|
+
codegen-units = 1
|
|
16
|
+
|
|
17
|
+
[workspace.lints.rust]
|
|
18
|
+
unsafe_code = "forbid"
|