drift-core-python 0.1.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.
- drift_core_python-0.1.1/Cargo.lock +559 -0
- drift_core_python-0.1.1/Cargo.toml +6 -0
- drift_core_python-0.1.1/PKG-INFO +5 -0
- drift_core_python-0.1.1/bindings/python/.gitignore +1 -0
- drift_core_python-0.1.1/bindings/python/Cargo.toml +16 -0
- drift_core_python-0.1.1/bindings/python/src/api.rs +191 -0
- drift_core_python-0.1.1/bindings/python/src/conversion.rs +103 -0
- drift_core_python-0.1.1/bindings/python/src/error.rs +5 -0
- drift_core_python-0.1.1/bindings/python/src/lib.rs +25 -0
- drift_core_python-0.1.1/crates/drift-rust-core/Cargo.toml +15 -0
- drift_core_python-0.1.1/crates/drift-rust-core/src/error.rs +20 -0
- drift_core_python-0.1.1/crates/drift-rust-core/src/export_request_proto.rs +63 -0
- drift_core_python-0.1.1/crates/drift-rust-core/src/hash.rs +47 -0
- drift_core_python-0.1.1/crates/drift-rust-core/src/lib.rs +21 -0
- drift_core_python-0.1.1/crates/drift-rust-core/src/normalize.rs +18 -0
- drift_core_python-0.1.1/crates/drift-rust-core/src/payload.rs +35 -0
- drift_core_python-0.1.1/crates/drift-rust-core/src/protobuf_struct.rs +69 -0
- drift_core_python-0.1.1/crates/drift-rust-core/src/schema.rs +163 -0
- drift_core_python-0.1.1/crates/drift-rust-core/src/span_proto.rs +174 -0
- drift_core_python-0.1.1/crates/drift-rust-core/src/types.rs +53 -0
- drift_core_python-0.1.1/crates/drift-rust-core/tests/fixture_smoke.rs +57 -0
- drift_core_python-0.1.1/pyproject.toml +14 -0
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anyhow"
|
|
16
|
+
version = "1.0.101"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "autocfg"
|
|
22
|
+
version = "1.5.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "base64"
|
|
28
|
+
version = "0.22.1"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "bitflags"
|
|
34
|
+
version = "2.11.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "block-buffer"
|
|
40
|
+
version = "0.10.4"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"generic-array",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "bytes"
|
|
49
|
+
version = "1.11.1"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "cfg-if"
|
|
55
|
+
version = "1.0.4"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "convert_case"
|
|
61
|
+
version = "0.6.0"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"unicode-segmentation",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "cpufeatures"
|
|
70
|
+
version = "0.2.17"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"libc",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "crypto-common"
|
|
79
|
+
version = "0.1.7"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"generic-array",
|
|
84
|
+
"typenum",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "ctor"
|
|
89
|
+
version = "0.2.9"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"quote",
|
|
94
|
+
"syn",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "digest"
|
|
99
|
+
version = "0.10.7"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"block-buffer",
|
|
104
|
+
"crypto-common",
|
|
105
|
+
]
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "drift-rust-core"
|
|
109
|
+
version = "0.1.1"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"base64",
|
|
112
|
+
"prost",
|
|
113
|
+
"prost-types",
|
|
114
|
+
"serde",
|
|
115
|
+
"serde_json",
|
|
116
|
+
"sha2",
|
|
117
|
+
"tusk-drift-schemas",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "drift-rust-core-node"
|
|
122
|
+
version = "0.1.1"
|
|
123
|
+
dependencies = [
|
|
124
|
+
"drift-rust-core",
|
|
125
|
+
"napi",
|
|
126
|
+
"napi-build",
|
|
127
|
+
"napi-derive",
|
|
128
|
+
"serde_json",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "drift-rust-core-python"
|
|
133
|
+
version = "0.1.1"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"drift-rust-core",
|
|
136
|
+
"pyo3",
|
|
137
|
+
"serde_json",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "either"
|
|
142
|
+
version = "1.15.0"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "generic-array"
|
|
148
|
+
version = "0.14.7"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"typenum",
|
|
153
|
+
"version_check",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "heck"
|
|
158
|
+
version = "0.5.0"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "indoc"
|
|
164
|
+
version = "2.0.7"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"rustversion",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "itertools"
|
|
173
|
+
version = "0.14.0"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
176
|
+
dependencies = [
|
|
177
|
+
"either",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "itoa"
|
|
182
|
+
version = "1.0.17"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "libc"
|
|
188
|
+
version = "0.2.182"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "libloading"
|
|
194
|
+
version = "0.8.9"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"cfg-if",
|
|
199
|
+
"windows-link",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "memchr"
|
|
204
|
+
version = "2.8.0"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "memoffset"
|
|
210
|
+
version = "0.9.1"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"autocfg",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "napi"
|
|
219
|
+
version = "2.16.17"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"bitflags",
|
|
224
|
+
"ctor",
|
|
225
|
+
"napi-derive",
|
|
226
|
+
"napi-sys",
|
|
227
|
+
"once_cell",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "napi-build"
|
|
232
|
+
version = "2.3.1"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "napi-derive"
|
|
238
|
+
version = "2.16.13"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"cfg-if",
|
|
243
|
+
"convert_case",
|
|
244
|
+
"napi-derive-backend",
|
|
245
|
+
"proc-macro2",
|
|
246
|
+
"quote",
|
|
247
|
+
"syn",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "napi-derive-backend"
|
|
252
|
+
version = "1.0.75"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"convert_case",
|
|
257
|
+
"once_cell",
|
|
258
|
+
"proc-macro2",
|
|
259
|
+
"quote",
|
|
260
|
+
"regex",
|
|
261
|
+
"semver",
|
|
262
|
+
"syn",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "napi-sys"
|
|
267
|
+
version = "2.4.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"libloading",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "once_cell"
|
|
276
|
+
version = "1.21.3"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "portable-atomic"
|
|
282
|
+
version = "1.13.1"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "proc-macro2"
|
|
288
|
+
version = "1.0.106"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"unicode-ident",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "prost"
|
|
297
|
+
version = "0.14.3"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"bytes",
|
|
302
|
+
"prost-derive",
|
|
303
|
+
]
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "prost-derive"
|
|
307
|
+
version = "0.14.3"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
|
|
310
|
+
dependencies = [
|
|
311
|
+
"anyhow",
|
|
312
|
+
"itertools",
|
|
313
|
+
"proc-macro2",
|
|
314
|
+
"quote",
|
|
315
|
+
"syn",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "prost-types"
|
|
320
|
+
version = "0.14.3"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"prost",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "pyo3"
|
|
329
|
+
version = "0.27.2"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"indoc",
|
|
334
|
+
"libc",
|
|
335
|
+
"memoffset",
|
|
336
|
+
"once_cell",
|
|
337
|
+
"portable-atomic",
|
|
338
|
+
"pyo3-build-config",
|
|
339
|
+
"pyo3-ffi",
|
|
340
|
+
"pyo3-macros",
|
|
341
|
+
"unindent",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "pyo3-build-config"
|
|
346
|
+
version = "0.27.2"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"target-lexicon",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "pyo3-ffi"
|
|
355
|
+
version = "0.27.2"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"libc",
|
|
360
|
+
"pyo3-build-config",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "pyo3-macros"
|
|
365
|
+
version = "0.27.2"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"proc-macro2",
|
|
370
|
+
"pyo3-macros-backend",
|
|
371
|
+
"quote",
|
|
372
|
+
"syn",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "pyo3-macros-backend"
|
|
377
|
+
version = "0.27.2"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"heck",
|
|
382
|
+
"proc-macro2",
|
|
383
|
+
"pyo3-build-config",
|
|
384
|
+
"quote",
|
|
385
|
+
"syn",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "quote"
|
|
390
|
+
version = "1.0.44"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"proc-macro2",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "regex"
|
|
399
|
+
version = "1.12.3"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"aho-corasick",
|
|
404
|
+
"memchr",
|
|
405
|
+
"regex-automata",
|
|
406
|
+
"regex-syntax",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "regex-automata"
|
|
411
|
+
version = "0.4.14"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
414
|
+
dependencies = [
|
|
415
|
+
"aho-corasick",
|
|
416
|
+
"memchr",
|
|
417
|
+
"regex-syntax",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "regex-syntax"
|
|
422
|
+
version = "0.8.9"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "rustversion"
|
|
428
|
+
version = "1.0.22"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "semver"
|
|
434
|
+
version = "1.0.27"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "serde"
|
|
440
|
+
version = "1.0.228"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"serde_core",
|
|
445
|
+
"serde_derive",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "serde_core"
|
|
450
|
+
version = "1.0.228"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"serde_derive",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "serde_derive"
|
|
459
|
+
version = "1.0.228"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"proc-macro2",
|
|
464
|
+
"quote",
|
|
465
|
+
"syn",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "serde_json"
|
|
470
|
+
version = "1.0.149"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"itoa",
|
|
475
|
+
"memchr",
|
|
476
|
+
"serde",
|
|
477
|
+
"serde_core",
|
|
478
|
+
"zmij",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "sha2"
|
|
483
|
+
version = "0.10.9"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"cfg-if",
|
|
488
|
+
"cpufeatures",
|
|
489
|
+
"digest",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "syn"
|
|
494
|
+
version = "2.0.116"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"proc-macro2",
|
|
499
|
+
"quote",
|
|
500
|
+
"unicode-ident",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "target-lexicon"
|
|
505
|
+
version = "0.13.5"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "tusk-drift-schemas"
|
|
511
|
+
version = "0.1.30"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "5d49ddf3d5b41f807c8ebd3459a0557fedbe2154267b0f22425a32342d946787"
|
|
514
|
+
dependencies = [
|
|
515
|
+
"prost",
|
|
516
|
+
"prost-types",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "typenum"
|
|
521
|
+
version = "1.19.0"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "unicode-ident"
|
|
527
|
+
version = "1.0.24"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "unicode-segmentation"
|
|
533
|
+
version = "1.12.0"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "unindent"
|
|
539
|
+
version = "0.2.4"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "version_check"
|
|
545
|
+
version = "0.9.5"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "windows-link"
|
|
551
|
+
version = "0.2.1"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "zmij"
|
|
557
|
+
version = "1.0.21"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.venv/
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "drift-rust-core-python"
|
|
3
|
+
version.workspace = true
|
|
4
|
+
edition = "2024"
|
|
5
|
+
license = "Apache-2.0"
|
|
6
|
+
description = "Python bindings for drift-rust-core"
|
|
7
|
+
publish = false
|
|
8
|
+
|
|
9
|
+
[lib]
|
|
10
|
+
name = "drift_core"
|
|
11
|
+
crate-type = ["cdylib"]
|
|
12
|
+
|
|
13
|
+
[dependencies]
|
|
14
|
+
drift-rust-core = { path = "../../crates/drift-rust-core" }
|
|
15
|
+
pyo3 = { version = "0.27", features = ["extension-module", "abi3", "abi3-py39"] }
|
|
16
|
+
serde_json = "1"
|