pyreccaster 0.1.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.
- pyreccaster-0.1.0/Cargo.lock +808 -0
- pyreccaster-0.1.0/Cargo.toml +9 -0
- pyreccaster-0.1.0/PKG-INFO +24 -0
- pyreccaster-0.1.0/pyproject.toml +59 -0
- pyreccaster-0.1.0/pyreccaster/.gitignore +72 -0
- pyreccaster-0.1.0/pyreccaster/Cargo.toml +21 -0
- pyreccaster-0.1.0/pyreccaster/python/tests/test_all.py +5 -0
- pyreccaster-0.1.0/pyreccaster/src/lib.rs +119 -0
- pyreccaster-0.1.0/pyreccaster/test.py +33 -0
- pyreccaster-0.1.0/python/pyreccaster/__init__.py +6 -0
- pyreccaster-0.1.0/reccaster/Cargo.toml +20 -0
- pyreccaster-0.1.0/reccaster/src/lib.rs +283 -0
- pyreccaster-0.1.0/reccaster/src/record.rs +34 -0
- pyreccaster-0.1.0/wire/Cargo.toml +17 -0
- pyreccaster-0.1.0/wire/src/codec.rs +155 -0
- pyreccaster-0.1.0/wire/src/header.rs +41 -0
- pyreccaster-0.1.0/wire/src/lib.rs +16 -0
- pyreccaster-0.1.0/wire/src/types.rs +173 -0
|
@@ -0,0 +1,808 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.24.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "autocfg"
|
|
22
|
+
version = "1.4.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "backtrace"
|
|
28
|
+
version = "0.3.74"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"addr2line",
|
|
33
|
+
"cfg-if",
|
|
34
|
+
"libc",
|
|
35
|
+
"miniz_oxide",
|
|
36
|
+
"object",
|
|
37
|
+
"rustc-demangle",
|
|
38
|
+
"windows-targets",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "basic-reccaster"
|
|
43
|
+
version = "0.1.0"
|
|
44
|
+
dependencies = [
|
|
45
|
+
"reccaster",
|
|
46
|
+
"tokio",
|
|
47
|
+
"tracing",
|
|
48
|
+
"tracing-subscriber",
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[[package]]
|
|
52
|
+
name = "bitflags"
|
|
53
|
+
version = "2.9.0"
|
|
54
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
55
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "byteorder"
|
|
59
|
+
version = "1.5.0"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "bytes"
|
|
65
|
+
version = "1.10.1"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "cc"
|
|
71
|
+
version = "1.2.17"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
|
|
74
|
+
dependencies = [
|
|
75
|
+
"shlex",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "cfg-if"
|
|
80
|
+
version = "1.0.0"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "futures"
|
|
86
|
+
version = "0.3.31"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
89
|
+
dependencies = [
|
|
90
|
+
"futures-channel",
|
|
91
|
+
"futures-core",
|
|
92
|
+
"futures-executor",
|
|
93
|
+
"futures-io",
|
|
94
|
+
"futures-sink",
|
|
95
|
+
"futures-task",
|
|
96
|
+
"futures-util",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "futures-channel"
|
|
101
|
+
version = "0.3.31"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"futures-core",
|
|
106
|
+
"futures-sink",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "futures-core"
|
|
111
|
+
version = "0.3.31"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "futures-executor"
|
|
117
|
+
version = "0.3.31"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"futures-core",
|
|
122
|
+
"futures-task",
|
|
123
|
+
"futures-util",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "futures-io"
|
|
128
|
+
version = "0.3.31"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "futures-macro"
|
|
134
|
+
version = "0.3.31"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"proc-macro2",
|
|
139
|
+
"quote",
|
|
140
|
+
"syn",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "futures-sink"
|
|
145
|
+
version = "0.3.31"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "futures-task"
|
|
151
|
+
version = "0.3.31"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "futures-util"
|
|
157
|
+
version = "0.3.31"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"futures-channel",
|
|
162
|
+
"futures-core",
|
|
163
|
+
"futures-io",
|
|
164
|
+
"futures-macro",
|
|
165
|
+
"futures-sink",
|
|
166
|
+
"futures-task",
|
|
167
|
+
"memchr",
|
|
168
|
+
"pin-project-lite",
|
|
169
|
+
"pin-utils",
|
|
170
|
+
"slab",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "gimli"
|
|
175
|
+
version = "0.31.1"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "hashbrown"
|
|
181
|
+
version = "0.14.5"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "heck"
|
|
187
|
+
version = "0.5.0"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "indoc"
|
|
193
|
+
version = "2.0.6"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "lazy_static"
|
|
199
|
+
version = "1.5.0"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "libc"
|
|
205
|
+
version = "0.2.171"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "lock_api"
|
|
211
|
+
version = "0.4.12"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"autocfg",
|
|
216
|
+
"scopeguard",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "log"
|
|
221
|
+
version = "0.4.27"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "memchr"
|
|
227
|
+
version = "2.7.4"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "memoffset"
|
|
233
|
+
version = "0.9.1"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"autocfg",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "miniz_oxide"
|
|
242
|
+
version = "0.8.5"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"adler2",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "mio"
|
|
251
|
+
version = "1.0.3"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"libc",
|
|
256
|
+
"wasi",
|
|
257
|
+
"windows-sys",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "nu-ansi-term"
|
|
262
|
+
version = "0.46.0"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
265
|
+
dependencies = [
|
|
266
|
+
"overload",
|
|
267
|
+
"winapi",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "object"
|
|
272
|
+
version = "0.36.7"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"memchr",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "once_cell"
|
|
281
|
+
version = "1.21.1"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "overload"
|
|
287
|
+
version = "0.1.1"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "parking_lot"
|
|
293
|
+
version = "0.12.3"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
296
|
+
dependencies = [
|
|
297
|
+
"lock_api",
|
|
298
|
+
"parking_lot_core",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "parking_lot_core"
|
|
303
|
+
version = "0.9.10"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"cfg-if",
|
|
308
|
+
"libc",
|
|
309
|
+
"redox_syscall",
|
|
310
|
+
"smallvec",
|
|
311
|
+
"windows-targets",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "pin-project-lite"
|
|
316
|
+
version = "0.2.16"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "pin-utils"
|
|
322
|
+
version = "0.1.0"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "portable-atomic"
|
|
328
|
+
version = "1.11.0"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "proc-macro2"
|
|
334
|
+
version = "1.0.94"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"unicode-ident",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "pyo3"
|
|
343
|
+
version = "0.25.0"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "f239d656363bcee73afef85277f1b281e8ac6212a1d42aa90e55b90ed43c47a4"
|
|
346
|
+
dependencies = [
|
|
347
|
+
"indoc",
|
|
348
|
+
"libc",
|
|
349
|
+
"memoffset",
|
|
350
|
+
"once_cell",
|
|
351
|
+
"portable-atomic",
|
|
352
|
+
"pyo3-build-config",
|
|
353
|
+
"pyo3-ffi",
|
|
354
|
+
"pyo3-macros",
|
|
355
|
+
"unindent",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "pyo3-async-runtimes"
|
|
360
|
+
version = "0.25.0"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "d73cc6b1b7d8b3cef02101d37390dbdfe7e450dfea14921cae80a9534ba59ef2"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"futures",
|
|
365
|
+
"once_cell",
|
|
366
|
+
"pin-project-lite",
|
|
367
|
+
"pyo3",
|
|
368
|
+
"pyo3-async-runtimes-macros",
|
|
369
|
+
"tokio",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "pyo3-async-runtimes-macros"
|
|
374
|
+
version = "0.25.0"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "ca31e43a0f205f2960208938135e37e579e61e10b36b4e7f49b0e8f60fab5b83"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"proc-macro2",
|
|
379
|
+
"quote",
|
|
380
|
+
"syn",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "pyo3-build-config"
|
|
385
|
+
version = "0.25.0"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "755ea671a1c34044fa165247aaf6f419ca39caa6003aee791a0df2713d8f1b6d"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"once_cell",
|
|
390
|
+
"python3-dll-a",
|
|
391
|
+
"target-lexicon",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "pyo3-ffi"
|
|
396
|
+
version = "0.25.0"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "fc95a2e67091e44791d4ea300ff744be5293f394f1bafd9f78c080814d35956e"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"libc",
|
|
401
|
+
"pyo3-build-config",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "pyo3-macros"
|
|
406
|
+
version = "0.25.0"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "a179641d1b93920829a62f15e87c0ed791b6c8db2271ba0fd7c2686090510214"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"proc-macro2",
|
|
411
|
+
"pyo3-macros-backend",
|
|
412
|
+
"quote",
|
|
413
|
+
"syn",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "pyo3-macros-backend"
|
|
418
|
+
version = "0.25.0"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "9dff85ebcaab8c441b0e3f7ae40a6963ecea8a9f5e74f647e33fcf5ec9a1e89e"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"heck",
|
|
423
|
+
"proc-macro2",
|
|
424
|
+
"pyo3-build-config",
|
|
425
|
+
"quote",
|
|
426
|
+
"syn",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "pyreccaster"
|
|
431
|
+
version = "0.1.0"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"pyo3",
|
|
434
|
+
"pyo3-async-runtimes",
|
|
435
|
+
"reccaster",
|
|
436
|
+
"tokio",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "python3-dll-a"
|
|
441
|
+
version = "0.2.13"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "49fe4227a288cf9493942ad0220ea3f185f4d1f2a14f197f7344d6d02f4ed4ed"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"cc",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "quote"
|
|
450
|
+
version = "1.0.40"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"proc-macro2",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "reccaster"
|
|
459
|
+
version = "0.1.0"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"bytes",
|
|
462
|
+
"futures",
|
|
463
|
+
"tokio",
|
|
464
|
+
"tokio-stream",
|
|
465
|
+
"tokio-util",
|
|
466
|
+
"tracing",
|
|
467
|
+
"wire",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "redox_syscall"
|
|
472
|
+
version = "0.5.10"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"bitflags",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "rustc-demangle"
|
|
481
|
+
version = "0.1.24"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "scopeguard"
|
|
487
|
+
version = "1.2.0"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "sharded-slab"
|
|
493
|
+
version = "0.1.7"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"lazy_static",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "shlex"
|
|
502
|
+
version = "1.3.0"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "signal-hook-registry"
|
|
508
|
+
version = "1.4.2"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"libc",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "slab"
|
|
517
|
+
version = "0.4.9"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"autocfg",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "smallvec"
|
|
526
|
+
version = "1.14.0"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "socket2"
|
|
532
|
+
version = "0.5.8"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"libc",
|
|
537
|
+
"windows-sys",
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "syn"
|
|
542
|
+
version = "2.0.100"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"proc-macro2",
|
|
547
|
+
"quote",
|
|
548
|
+
"unicode-ident",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "target-lexicon"
|
|
553
|
+
version = "0.13.2"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "thread_local"
|
|
559
|
+
version = "1.1.8"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"cfg-if",
|
|
564
|
+
"once_cell",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "tokio"
|
|
569
|
+
version = "1.44.1"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"backtrace",
|
|
574
|
+
"bytes",
|
|
575
|
+
"libc",
|
|
576
|
+
"mio",
|
|
577
|
+
"parking_lot",
|
|
578
|
+
"pin-project-lite",
|
|
579
|
+
"signal-hook-registry",
|
|
580
|
+
"socket2",
|
|
581
|
+
"tokio-macros",
|
|
582
|
+
"windows-sys",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "tokio-macros"
|
|
587
|
+
version = "2.5.0"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"proc-macro2",
|
|
592
|
+
"quote",
|
|
593
|
+
"syn",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "tokio-stream"
|
|
598
|
+
version = "0.1.17"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"futures-core",
|
|
603
|
+
"pin-project-lite",
|
|
604
|
+
"tokio",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "tokio-util"
|
|
609
|
+
version = "0.7.14"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"bytes",
|
|
614
|
+
"futures-core",
|
|
615
|
+
"futures-io",
|
|
616
|
+
"futures-sink",
|
|
617
|
+
"futures-util",
|
|
618
|
+
"hashbrown",
|
|
619
|
+
"pin-project-lite",
|
|
620
|
+
"slab",
|
|
621
|
+
"tokio",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "tracing"
|
|
626
|
+
version = "0.1.41"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"pin-project-lite",
|
|
631
|
+
"tracing-attributes",
|
|
632
|
+
"tracing-core",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "tracing-attributes"
|
|
637
|
+
version = "0.1.28"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"proc-macro2",
|
|
642
|
+
"quote",
|
|
643
|
+
"syn",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "tracing-core"
|
|
648
|
+
version = "0.1.33"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"once_cell",
|
|
653
|
+
"valuable",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "tracing-log"
|
|
658
|
+
version = "0.2.0"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"log",
|
|
663
|
+
"once_cell",
|
|
664
|
+
"tracing-core",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "tracing-subscriber"
|
|
669
|
+
version = "0.3.19"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"nu-ansi-term",
|
|
674
|
+
"sharded-slab",
|
|
675
|
+
"smallvec",
|
|
676
|
+
"thread_local",
|
|
677
|
+
"tracing-core",
|
|
678
|
+
"tracing-log",
|
|
679
|
+
]
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "unicode-ident"
|
|
683
|
+
version = "1.0.18"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "unindent"
|
|
689
|
+
version = "0.2.4"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "valuable"
|
|
695
|
+
version = "0.1.1"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "wasi"
|
|
701
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "winapi"
|
|
707
|
+
version = "0.3.9"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"winapi-i686-pc-windows-gnu",
|
|
712
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
717
|
+
version = "0.4.0"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
723
|
+
version = "0.4.0"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "windows-sys"
|
|
729
|
+
version = "0.52.0"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"windows-targets",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "windows-targets"
|
|
738
|
+
version = "0.52.6"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
741
|
+
dependencies = [
|
|
742
|
+
"windows_aarch64_gnullvm",
|
|
743
|
+
"windows_aarch64_msvc",
|
|
744
|
+
"windows_i686_gnu",
|
|
745
|
+
"windows_i686_gnullvm",
|
|
746
|
+
"windows_i686_msvc",
|
|
747
|
+
"windows_x86_64_gnu",
|
|
748
|
+
"windows_x86_64_gnullvm",
|
|
749
|
+
"windows_x86_64_msvc",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "windows_aarch64_gnullvm"
|
|
754
|
+
version = "0.52.6"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "windows_aarch64_msvc"
|
|
760
|
+
version = "0.52.6"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "windows_i686_gnu"
|
|
766
|
+
version = "0.52.6"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "windows_i686_gnullvm"
|
|
772
|
+
version = "0.52.6"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "windows_i686_msvc"
|
|
778
|
+
version = "0.52.6"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "windows_x86_64_gnu"
|
|
784
|
+
version = "0.52.6"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "windows_x86_64_gnullvm"
|
|
790
|
+
version = "0.52.6"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "windows_x86_64_msvc"
|
|
796
|
+
version = "0.52.6"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "wire"
|
|
802
|
+
version = "0.1.0"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"byteorder",
|
|
805
|
+
"bytes",
|
|
806
|
+
"tokio",
|
|
807
|
+
"tokio-util",
|
|
808
|
+
]
|