remanence 0.0.1.dev0__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.
@@ -0,0 +1,523 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "anstream"
7
+ version = "1.0.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
10
+ dependencies = [
11
+ "anstyle",
12
+ "anstyle-parse",
13
+ "anstyle-query",
14
+ "anstyle-wincon",
15
+ "colorchoice",
16
+ "is_terminal_polyfill",
17
+ "utf8parse",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.14"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
25
+
26
+ [[package]]
27
+ name = "anstyle-parse"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
31
+ dependencies = [
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle-query"
37
+ version = "1.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
40
+ dependencies = [
41
+ "windows-sys",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-wincon"
46
+ version = "3.0.11"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
49
+ dependencies = [
50
+ "anstyle",
51
+ "once_cell_polyfill",
52
+ "windows-sys",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "bitflags"
57
+ version = "2.13.1"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
60
+
61
+ [[package]]
62
+ name = "cbindgen"
63
+ version = "0.29.4"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "2ecb53484c9c167ba674026b656d8a27d7657a58e6066aa902bfb1a4aa00ae20"
66
+ dependencies = [
67
+ "clap",
68
+ "heck",
69
+ "indexmap",
70
+ "log",
71
+ "proc-macro2",
72
+ "quote",
73
+ "serde",
74
+ "serde_json",
75
+ "syn 2.0.119",
76
+ "tempfile",
77
+ "toml",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "cfg-if"
82
+ version = "1.0.4"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
85
+
86
+ [[package]]
87
+ name = "clap"
88
+ version = "4.6.4"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
91
+ dependencies = [
92
+ "clap_builder",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "clap_builder"
97
+ version = "4.6.2"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
100
+ dependencies = [
101
+ "anstream",
102
+ "anstyle",
103
+ "clap_lex",
104
+ "strsim",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "clap_lex"
109
+ version = "1.1.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
112
+
113
+ [[package]]
114
+ name = "colorchoice"
115
+ version = "1.0.5"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
118
+
119
+ [[package]]
120
+ name = "equivalent"
121
+ version = "1.0.2"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
124
+
125
+ [[package]]
126
+ name = "errno"
127
+ version = "0.3.14"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
130
+ dependencies = [
131
+ "libc",
132
+ "windows-sys",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "fastrand"
137
+ version = "2.5.0"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
140
+
141
+ [[package]]
142
+ name = "getrandom"
143
+ version = "0.4.3"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
146
+ dependencies = [
147
+ "cfg-if",
148
+ "libc",
149
+ "r-efi",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "hashbrown"
154
+ version = "0.17.1"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
157
+
158
+ [[package]]
159
+ name = "heck"
160
+ version = "0.5.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
163
+
164
+ [[package]]
165
+ name = "indexmap"
166
+ version = "2.14.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
169
+ dependencies = [
170
+ "equivalent",
171
+ "hashbrown",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "is_terminal_polyfill"
176
+ version = "1.70.2"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
179
+
180
+ [[package]]
181
+ name = "itoa"
182
+ version = "1.0.18"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
185
+
186
+ [[package]]
187
+ name = "libc"
188
+ version = "0.2.189"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
191
+
192
+ [[package]]
193
+ name = "linux-raw-sys"
194
+ version = "0.12.1"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
197
+
198
+ [[package]]
199
+ name = "log"
200
+ version = "0.4.33"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
203
+
204
+ [[package]]
205
+ name = "memchr"
206
+ version = "2.8.3"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
209
+
210
+ [[package]]
211
+ name = "once_cell"
212
+ version = "1.21.4"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
215
+
216
+ [[package]]
217
+ name = "once_cell_polyfill"
218
+ version = "1.70.2"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
221
+
222
+ [[package]]
223
+ name = "portable-atomic"
224
+ version = "1.14.0"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
227
+
228
+ [[package]]
229
+ name = "proc-macro2"
230
+ version = "1.0.107"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
233
+ dependencies = [
234
+ "unicode-ident",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "pyo3"
239
+ version = "0.29.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
242
+ dependencies = [
243
+ "libc",
244
+ "once_cell",
245
+ "portable-atomic",
246
+ "pyo3-build-config",
247
+ "pyo3-ffi",
248
+ "pyo3-macros",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "pyo3-build-config"
253
+ version = "0.29.0"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
256
+ dependencies = [
257
+ "target-lexicon",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "pyo3-ffi"
262
+ version = "0.29.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
265
+ dependencies = [
266
+ "libc",
267
+ "pyo3-build-config",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "pyo3-macros"
272
+ version = "0.29.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
275
+ dependencies = [
276
+ "proc-macro2",
277
+ "pyo3-macros-backend",
278
+ "quote",
279
+ "syn 2.0.119",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "pyo3-macros-backend"
284
+ version = "0.29.0"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
287
+ dependencies = [
288
+ "heck",
289
+ "proc-macro2",
290
+ "quote",
291
+ "syn 2.0.119",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "quote"
296
+ version = "1.0.47"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
299
+ dependencies = [
300
+ "proc-macro2",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "r-efi"
305
+ version = "6.0.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
308
+
309
+ [[package]]
310
+ name = "remanence"
311
+ version = "0.1.0"
312
+
313
+ [[package]]
314
+ name = "remanence-ffi"
315
+ version = "0.1.0"
316
+ dependencies = [
317
+ "cbindgen",
318
+ "remanence",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "remanence-py"
323
+ version = "0.1.0"
324
+ dependencies = [
325
+ "pyo3",
326
+ "remanence",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "rustix"
331
+ version = "1.1.4"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
334
+ dependencies = [
335
+ "bitflags",
336
+ "errno",
337
+ "libc",
338
+ "linux-raw-sys",
339
+ "windows-sys",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "serde"
344
+ version = "1.0.229"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
347
+ dependencies = [
348
+ "serde_core",
349
+ "serde_derive",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "serde_core"
354
+ version = "1.0.229"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
357
+ dependencies = [
358
+ "serde_derive",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "serde_derive"
363
+ version = "1.0.229"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
366
+ dependencies = [
367
+ "proc-macro2",
368
+ "quote",
369
+ "syn 3.0.3",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "serde_json"
374
+ version = "1.0.151"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
377
+ dependencies = [
378
+ "itoa",
379
+ "memchr",
380
+ "serde",
381
+ "serde_core",
382
+ "zmij",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "serde_spanned"
387
+ version = "1.1.1"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
390
+ dependencies = [
391
+ "serde_core",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "strsim"
396
+ version = "0.11.1"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
399
+
400
+ [[package]]
401
+ name = "syn"
402
+ version = "2.0.119"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
405
+ dependencies = [
406
+ "proc-macro2",
407
+ "quote",
408
+ "unicode-ident",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "syn"
413
+ version = "3.0.3"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
416
+ dependencies = [
417
+ "proc-macro2",
418
+ "quote",
419
+ "unicode-ident",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "target-lexicon"
424
+ version = "0.13.5"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
427
+
428
+ [[package]]
429
+ name = "tempfile"
430
+ version = "3.27.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
433
+ dependencies = [
434
+ "fastrand",
435
+ "getrandom",
436
+ "once_cell",
437
+ "rustix",
438
+ "windows-sys",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "toml"
443
+ version = "0.9.12+spec-1.1.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
446
+ dependencies = [
447
+ "indexmap",
448
+ "serde_core",
449
+ "serde_spanned",
450
+ "toml_datetime",
451
+ "toml_parser",
452
+ "toml_writer",
453
+ "winnow 0.7.15",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "toml_datetime"
458
+ version = "0.7.5+spec-1.1.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
461
+ dependencies = [
462
+ "serde_core",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "toml_parser"
467
+ version = "1.1.3+spec-1.1.0"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
470
+ dependencies = [
471
+ "winnow 1.0.4",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "toml_writer"
476
+ version = "1.1.2+spec-1.1.0"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
479
+
480
+ [[package]]
481
+ name = "unicode-ident"
482
+ version = "1.0.24"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
485
+
486
+ [[package]]
487
+ name = "utf8parse"
488
+ version = "0.2.2"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
491
+
492
+ [[package]]
493
+ name = "windows-link"
494
+ version = "0.2.1"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
497
+
498
+ [[package]]
499
+ name = "windows-sys"
500
+ version = "0.61.2"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
503
+ dependencies = [
504
+ "windows-link",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "winnow"
509
+ version = "0.7.15"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
512
+
513
+ [[package]]
514
+ name = "winnow"
515
+ version = "1.0.4"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
518
+
519
+ [[package]]
520
+ name = "zmij"
521
+ version = "1.0.23"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
@@ -0,0 +1,11 @@
1
+ [workspace]
2
+ resolver = "3"
3
+ members = ["crates/remanence", "crates/remanence-py"]
4
+
5
+ [workspace.package]
6
+ version = "0.1.0"
7
+ edition = "2024"
8
+ license = "GPL-3.0-only"
9
+
10
+ [workspace.dependencies]
11
+ remanence = { path = "crates/remanence", version = "0.1.0" }