rusty-bacnet 0.4.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.
Files changed (124) hide show
  1. rusty_bacnet-0.4.0/Cargo.lock +2956 -0
  2. rusty_bacnet-0.4.0/Cargo.toml +42 -0
  3. rusty_bacnet-0.4.0/PKG-INFO +22 -0
  4. rusty_bacnet-0.4.0/crates/bacnet-client/Cargo.toml +28 -0
  5. rusty_bacnet-0.4.0/crates/bacnet-client/src/client.rs +2042 -0
  6. rusty_bacnet-0.4.0/crates/bacnet-client/src/discovery.rs +221 -0
  7. rusty_bacnet-0.4.0/crates/bacnet-client/src/lib.rs +6 -0
  8. rusty_bacnet-0.4.0/crates/bacnet-client/src/segmentation.rs +2 -0
  9. rusty_bacnet-0.4.0/crates/bacnet-client/src/tsm.rs +292 -0
  10. rusty_bacnet-0.4.0/crates/bacnet-client/tests/integration.rs +195 -0
  11. rusty_bacnet-0.4.0/crates/bacnet-encoding/Cargo.toml +15 -0
  12. rusty_bacnet-0.4.0/crates/bacnet-encoding/src/apdu.rs +1062 -0
  13. rusty_bacnet-0.4.0/crates/bacnet-encoding/src/lib.rs +13 -0
  14. rusty_bacnet-0.4.0/crates/bacnet-encoding/src/npdu.rs +735 -0
  15. rusty_bacnet-0.4.0/crates/bacnet-encoding/src/primitives.rs +1118 -0
  16. rusty_bacnet-0.4.0/crates/bacnet-encoding/src/segmentation.rs +228 -0
  17. rusty_bacnet-0.4.0/crates/bacnet-encoding/src/tags.rs +788 -0
  18. rusty_bacnet-0.4.0/crates/bacnet-network/Cargo.toml +18 -0
  19. rusty_bacnet-0.4.0/crates/bacnet-network/src/layer.rs +407 -0
  20. rusty_bacnet-0.4.0/crates/bacnet-network/src/lib.rs +6 -0
  21. rusty_bacnet-0.4.0/crates/bacnet-network/src/priority_channel.rs +291 -0
  22. rusty_bacnet-0.4.0/crates/bacnet-network/src/router.rs +1627 -0
  23. rusty_bacnet-0.4.0/crates/bacnet-network/src/router_table.rs +479 -0
  24. rusty_bacnet-0.4.0/crates/bacnet-objects/Cargo.toml +16 -0
  25. rusty_bacnet-0.4.0/crates/bacnet-objects/src/access_control.rs +1489 -0
  26. rusty_bacnet-0.4.0/crates/bacnet-objects/src/accumulator.rs +665 -0
  27. rusty_bacnet-0.4.0/crates/bacnet-objects/src/analog.rs +1905 -0
  28. rusty_bacnet-0.4.0/crates/bacnet-objects/src/audit.rs +400 -0
  29. rusty_bacnet-0.4.0/crates/bacnet-objects/src/averaging.rs +487 -0
  30. rusty_bacnet-0.4.0/crates/bacnet-objects/src/binary.rs +1398 -0
  31. rusty_bacnet-0.4.0/crates/bacnet-objects/src/command.rs +254 -0
  32. rusty_bacnet-0.4.0/crates/bacnet-objects/src/common.rs +521 -0
  33. rusty_bacnet-0.4.0/crates/bacnet-objects/src/database.rs +442 -0
  34. rusty_bacnet-0.4.0/crates/bacnet-objects/src/device.rs +904 -0
  35. rusty_bacnet-0.4.0/crates/bacnet-objects/src/elevator.rs +784 -0
  36. rusty_bacnet-0.4.0/crates/bacnet-objects/src/event.rs +486 -0
  37. rusty_bacnet-0.4.0/crates/bacnet-objects/src/event_enrollment.rs +928 -0
  38. rusty_bacnet-0.4.0/crates/bacnet-objects/src/event_log.rs +511 -0
  39. rusty_bacnet-0.4.0/crates/bacnet-objects/src/file.rs +665 -0
  40. rusty_bacnet-0.4.0/crates/bacnet-objects/src/forwarder.rs +279 -0
  41. rusty_bacnet-0.4.0/crates/bacnet-objects/src/group.rs +633 -0
  42. rusty_bacnet-0.4.0/crates/bacnet-objects/src/lib.rs +33 -0
  43. rusty_bacnet-0.4.0/crates/bacnet-objects/src/life_safety.rs +811 -0
  44. rusty_bacnet-0.4.0/crates/bacnet-objects/src/lighting.rs +1091 -0
  45. rusty_bacnet-0.4.0/crates/bacnet-objects/src/load_control.rs +368 -0
  46. rusty_bacnet-0.4.0/crates/bacnet-objects/src/loop_obj.rs +640 -0
  47. rusty_bacnet-0.4.0/crates/bacnet-objects/src/multistate.rs +1362 -0
  48. rusty_bacnet-0.4.0/crates/bacnet-objects/src/network_port.rs +765 -0
  49. rusty_bacnet-0.4.0/crates/bacnet-objects/src/notification_class.rs +1051 -0
  50. rusty_bacnet-0.4.0/crates/bacnet-objects/src/program.rs +292 -0
  51. rusty_bacnet-0.4.0/crates/bacnet-objects/src/schedule.rs +1282 -0
  52. rusty_bacnet-0.4.0/crates/bacnet-objects/src/staging.rs +275 -0
  53. rusty_bacnet-0.4.0/crates/bacnet-objects/src/timer.rs +412 -0
  54. rusty_bacnet-0.4.0/crates/bacnet-objects/src/traits.rs +103 -0
  55. rusty_bacnet-0.4.0/crates/bacnet-objects/src/trend.rs +1162 -0
  56. rusty_bacnet-0.4.0/crates/bacnet-objects/src/value_types.rs +1386 -0
  57. rusty_bacnet-0.4.0/crates/bacnet-server/Cargo.toml +29 -0
  58. rusty_bacnet-0.4.0/crates/bacnet-server/src/cov.rs +330 -0
  59. rusty_bacnet-0.4.0/crates/bacnet-server/src/event_enrollment.rs +1052 -0
  60. rusty_bacnet-0.4.0/crates/bacnet-server/src/fault_detection.rs +322 -0
  61. rusty_bacnet-0.4.0/crates/bacnet-server/src/handlers.rs +2642 -0
  62. rusty_bacnet-0.4.0/crates/bacnet-server/src/intrinsic_reporting.rs +1646 -0
  63. rusty_bacnet-0.4.0/crates/bacnet-server/src/lib.rs +11 -0
  64. rusty_bacnet-0.4.0/crates/bacnet-server/src/pics.rs +1099 -0
  65. rusty_bacnet-0.4.0/crates/bacnet-server/src/schedule.rs +72 -0
  66. rusty_bacnet-0.4.0/crates/bacnet-server/src/server.rs +2302 -0
  67. rusty_bacnet-0.4.0/crates/bacnet-server/src/trend_log.rs +216 -0
  68. rusty_bacnet-0.4.0/crates/bacnet-services/Cargo.toml +16 -0
  69. rusty_bacnet-0.4.0/crates/bacnet-services/src/alarm_event.rs +3264 -0
  70. rusty_bacnet-0.4.0/crates/bacnet-services/src/alarm_summary.rs +195 -0
  71. rusty_bacnet-0.4.0/crates/bacnet-services/src/audit.rs +483 -0
  72. rusty_bacnet-0.4.0/crates/bacnet-services/src/common.rs +366 -0
  73. rusty_bacnet-0.4.0/crates/bacnet-services/src/cov.rs +619 -0
  74. rusty_bacnet-0.4.0/crates/bacnet-services/src/cov_multiple.rs +626 -0
  75. rusty_bacnet-0.4.0/crates/bacnet-services/src/device_mgmt.rs +372 -0
  76. rusty_bacnet-0.4.0/crates/bacnet-services/src/enrollment_summary.rs +431 -0
  77. rusty_bacnet-0.4.0/crates/bacnet-services/src/file.rs +788 -0
  78. rusty_bacnet-0.4.0/crates/bacnet-services/src/lib.rs +31 -0
  79. rusty_bacnet-0.4.0/crates/bacnet-services/src/life_safety.rs +170 -0
  80. rusty_bacnet-0.4.0/crates/bacnet-services/src/list_manipulation.rs +174 -0
  81. rusty_bacnet-0.4.0/crates/bacnet-services/src/object_mgmt.rs +299 -0
  82. rusty_bacnet-0.4.0/crates/bacnet-services/src/private_transfer.rs +274 -0
  83. rusty_bacnet-0.4.0/crates/bacnet-services/src/read_property.rs +374 -0
  84. rusty_bacnet-0.4.0/crates/bacnet-services/src/read_range.rs +579 -0
  85. rusty_bacnet-0.4.0/crates/bacnet-services/src/rpm.rs +535 -0
  86. rusty_bacnet-0.4.0/crates/bacnet-services/src/text_message.rs +221 -0
  87. rusty_bacnet-0.4.0/crates/bacnet-services/src/virtual_terminal.rs +334 -0
  88. rusty_bacnet-0.4.0/crates/bacnet-services/src/who_am_i.rs +204 -0
  89. rusty_bacnet-0.4.0/crates/bacnet-services/src/who_has.rs +307 -0
  90. rusty_bacnet-0.4.0/crates/bacnet-services/src/who_is.rs +340 -0
  91. rusty_bacnet-0.4.0/crates/bacnet-services/src/wpm.rs +220 -0
  92. rusty_bacnet-0.4.0/crates/bacnet-services/src/write_group.rs +270 -0
  93. rusty_bacnet-0.4.0/crates/bacnet-services/src/write_property.rs +259 -0
  94. rusty_bacnet-0.4.0/crates/bacnet-transport/Cargo.toml +31 -0
  95. rusty_bacnet-0.4.0/crates/bacnet-transport/src/any.rs +226 -0
  96. rusty_bacnet-0.4.0/crates/bacnet-transport/src/bbmd.rs +569 -0
  97. rusty_bacnet-0.4.0/crates/bacnet-transport/src/bip.rs +848 -0
  98. rusty_bacnet-0.4.0/crates/bacnet-transport/src/bip6.rs +1081 -0
  99. rusty_bacnet-0.4.0/crates/bacnet-transport/src/bvll.rs +290 -0
  100. rusty_bacnet-0.4.0/crates/bacnet-transport/src/ethernet.rs +776 -0
  101. rusty_bacnet-0.4.0/crates/bacnet-transport/src/lib.rs +30 -0
  102. rusty_bacnet-0.4.0/crates/bacnet-transport/src/mstp.rs +1667 -0
  103. rusty_bacnet-0.4.0/crates/bacnet-transport/src/mstp_frame.rs +734 -0
  104. rusty_bacnet-0.4.0/crates/bacnet-transport/src/mstp_serial.rs +66 -0
  105. rusty_bacnet-0.4.0/crates/bacnet-transport/src/port.rs +82 -0
  106. rusty_bacnet-0.4.0/crates/bacnet-transport/src/sc.rs +1436 -0
  107. rusty_bacnet-0.4.0/crates/bacnet-transport/src/sc_frame.rs +622 -0
  108. rusty_bacnet-0.4.0/crates/bacnet-transport/src/sc_hub.rs +426 -0
  109. rusty_bacnet-0.4.0/crates/bacnet-transport/src/sc_tls.rs +89 -0
  110. rusty_bacnet-0.4.0/crates/bacnet-types/Cargo.toml +19 -0
  111. rusty_bacnet-0.4.0/crates/bacnet-types/src/constructed.rs +1165 -0
  112. rusty_bacnet-0.4.0/crates/bacnet-types/src/enums.rs +2363 -0
  113. rusty_bacnet-0.4.0/crates/bacnet-types/src/error.rs +132 -0
  114. rusty_bacnet-0.4.0/crates/bacnet-types/src/lib.rs +24 -0
  115. rusty_bacnet-0.4.0/crates/bacnet-types/src/primitives.rs +471 -0
  116. rusty_bacnet-0.4.0/crates/rusty-bacnet/Cargo.toml +26 -0
  117. rusty_bacnet-0.4.0/crates/rusty-bacnet/src/client.rs +1870 -0
  118. rusty_bacnet-0.4.0/crates/rusty-bacnet/src/errors.rs +45 -0
  119. rusty_bacnet-0.4.0/crates/rusty-bacnet/src/hub.rs +146 -0
  120. rusty_bacnet-0.4.0/crates/rusty-bacnet/src/lib.rs +27 -0
  121. rusty_bacnet-0.4.0/crates/rusty-bacnet/src/server.rs +928 -0
  122. rusty_bacnet-0.4.0/crates/rusty-bacnet/src/tls.rs +130 -0
  123. rusty_bacnet-0.4.0/crates/rusty-bacnet/src/types.rs +858 -0
  124. rusty_bacnet-0.4.0/pyproject.toml +34 -0
@@ -0,0 +1,2956 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anes"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
25
+
26
+ [[package]]
27
+ name = "anstream"
28
+ version = "0.6.21"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
31
+ dependencies = [
32
+ "anstyle",
33
+ "anstyle-parse",
34
+ "anstyle-query",
35
+ "anstyle-wincon",
36
+ "colorchoice",
37
+ "is_terminal_polyfill",
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle"
43
+ version = "1.0.13"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
46
+
47
+ [[package]]
48
+ name = "anstyle-parse"
49
+ version = "0.2.7"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
52
+ dependencies = [
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle-query"
58
+ version = "1.1.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
61
+ dependencies = [
62
+ "windows-sys 0.61.2",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-wincon"
67
+ version = "3.0.11"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
70
+ dependencies = [
71
+ "anstyle",
72
+ "once_cell_polyfill",
73
+ "windows-sys 0.61.2",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anyhow"
78
+ version = "1.0.102"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
81
+
82
+ [[package]]
83
+ name = "asn1-rs"
84
+ version = "0.7.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
87
+ dependencies = [
88
+ "asn1-rs-derive",
89
+ "asn1-rs-impl",
90
+ "displaydoc",
91
+ "nom",
92
+ "num-traits",
93
+ "rusticata-macros",
94
+ "thiserror",
95
+ "time",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "asn1-rs-derive"
100
+ version = "0.6.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
103
+ dependencies = [
104
+ "proc-macro2",
105
+ "quote",
106
+ "syn",
107
+ "synstructure",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "asn1-rs-impl"
112
+ version = "0.2.0"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
115
+ dependencies = [
116
+ "proc-macro2",
117
+ "quote",
118
+ "syn",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "async-trait"
123
+ version = "0.1.89"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
126
+ dependencies = [
127
+ "proc-macro2",
128
+ "quote",
129
+ "syn",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "atomic-waker"
134
+ version = "1.1.2"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
137
+
138
+ [[package]]
139
+ name = "autocfg"
140
+ version = "1.5.0"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
143
+
144
+ [[package]]
145
+ name = "aws-lc-rs"
146
+ version = "1.16.1"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "94bffc006df10ac2a68c83692d734a465f8ee6c5b384d8545a636f81d858f4bf"
149
+ dependencies = [
150
+ "aws-lc-sys",
151
+ "untrusted 0.7.1",
152
+ "zeroize",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "aws-lc-sys"
157
+ version = "0.38.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "4321e568ed89bb5a7d291a7f37997c2c0df89809d7b6d12062c81ddb54aa782e"
160
+ dependencies = [
161
+ "cc",
162
+ "cmake",
163
+ "dunce",
164
+ "fs_extra",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "axum"
169
+ version = "0.8.8"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
172
+ dependencies = [
173
+ "axum-core",
174
+ "bytes",
175
+ "futures-util",
176
+ "http",
177
+ "http-body",
178
+ "http-body-util",
179
+ "itoa",
180
+ "matchit",
181
+ "memchr",
182
+ "mime",
183
+ "percent-encoding",
184
+ "pin-project-lite",
185
+ "serde_core",
186
+ "sync_wrapper",
187
+ "tower",
188
+ "tower-layer",
189
+ "tower-service",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "axum-core"
194
+ version = "0.5.6"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
197
+ dependencies = [
198
+ "bytes",
199
+ "futures-core",
200
+ "http",
201
+ "http-body",
202
+ "http-body-util",
203
+ "mime",
204
+ "pin-project-lite",
205
+ "sync_wrapper",
206
+ "tower-layer",
207
+ "tower-service",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "bacnet-benchmarks"
212
+ version = "0.4.0"
213
+ dependencies = [
214
+ "bacnet-client",
215
+ "bacnet-encoding",
216
+ "bacnet-network",
217
+ "bacnet-objects",
218
+ "bacnet-server",
219
+ "bacnet-services",
220
+ "bacnet-transport",
221
+ "bacnet-types",
222
+ "bytes",
223
+ "clap",
224
+ "console-subscriber",
225
+ "criterion",
226
+ "hdrhistogram",
227
+ "rand",
228
+ "rcgen",
229
+ "rustls",
230
+ "serde",
231
+ "serde_json",
232
+ "sysinfo",
233
+ "tokio",
234
+ "tokio-rustls",
235
+ "tracing-subscriber",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "bacnet-client"
240
+ version = "0.4.0"
241
+ dependencies = [
242
+ "bacnet-encoding",
243
+ "bacnet-network",
244
+ "bacnet-objects",
245
+ "bacnet-services",
246
+ "bacnet-transport",
247
+ "bacnet-types",
248
+ "bytes",
249
+ "tokio",
250
+ "tokio-rustls",
251
+ "tracing",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "bacnet-encoding"
256
+ version = "0.4.0"
257
+ dependencies = [
258
+ "bacnet-types",
259
+ "bytes",
260
+ "tracing",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "bacnet-integration-tests"
265
+ version = "0.4.0"
266
+ dependencies = [
267
+ "bacnet-client",
268
+ "bacnet-encoding",
269
+ "bacnet-network",
270
+ "bacnet-objects",
271
+ "bacnet-server",
272
+ "bacnet-services",
273
+ "bacnet-transport",
274
+ "bacnet-types",
275
+ "bytes",
276
+ "tokio",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "bacnet-network"
281
+ version = "0.4.0"
282
+ dependencies = [
283
+ "bacnet-encoding",
284
+ "bacnet-transport",
285
+ "bacnet-types",
286
+ "bytes",
287
+ "tokio",
288
+ "tracing",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "bacnet-objects"
293
+ version = "0.4.0"
294
+ dependencies = [
295
+ "bacnet-encoding",
296
+ "bacnet-types",
297
+ "bytes",
298
+ "tracing",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "bacnet-server"
303
+ version = "0.4.0"
304
+ dependencies = [
305
+ "bacnet-encoding",
306
+ "bacnet-network",
307
+ "bacnet-objects",
308
+ "bacnet-services",
309
+ "bacnet-transport",
310
+ "bacnet-types",
311
+ "bytes",
312
+ "tokio",
313
+ "tokio-rustls",
314
+ "tracing",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "bacnet-services"
319
+ version = "0.4.0"
320
+ dependencies = [
321
+ "bacnet-encoding",
322
+ "bacnet-types",
323
+ "bytes",
324
+ "tracing",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "bacnet-transport"
329
+ version = "0.4.0"
330
+ dependencies = [
331
+ "bacnet-encoding",
332
+ "bacnet-types",
333
+ "bytes",
334
+ "futures-util",
335
+ "libc",
336
+ "rustls",
337
+ "socket2",
338
+ "tokio",
339
+ "tokio-rustls",
340
+ "tokio-serial",
341
+ "tokio-tungstenite",
342
+ "tracing",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "bacnet-types"
347
+ version = "0.4.0"
348
+ dependencies = [
349
+ "bitflags 2.11.0",
350
+ "smallvec",
351
+ "thiserror",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "bacnet-wasm"
356
+ version = "0.4.0"
357
+ dependencies = [
358
+ "bacnet-encoding",
359
+ "bacnet-services",
360
+ "bacnet-types",
361
+ "bytes",
362
+ "js-sys",
363
+ "serde",
364
+ "serde-wasm-bindgen",
365
+ "wasm-bindgen",
366
+ "wasm-bindgen-futures",
367
+ "wasm-bindgen-test",
368
+ "web-sys",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "base64"
373
+ version = "0.21.7"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
376
+
377
+ [[package]]
378
+ name = "base64"
379
+ version = "0.22.1"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
382
+
383
+ [[package]]
384
+ name = "bitflags"
385
+ version = "1.3.2"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
388
+
389
+ [[package]]
390
+ name = "bitflags"
391
+ version = "2.11.0"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
394
+
395
+ [[package]]
396
+ name = "block-buffer"
397
+ version = "0.10.4"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
400
+ dependencies = [
401
+ "generic-array",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "bumpalo"
406
+ version = "3.20.2"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
409
+
410
+ [[package]]
411
+ name = "byteorder"
412
+ version = "1.5.0"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
415
+
416
+ [[package]]
417
+ name = "bytes"
418
+ version = "1.11.1"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
421
+
422
+ [[package]]
423
+ name = "cast"
424
+ version = "0.3.0"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
427
+
428
+ [[package]]
429
+ name = "cc"
430
+ version = "1.2.56"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
433
+ dependencies = [
434
+ "find-msvc-tools",
435
+ "jobserver",
436
+ "libc",
437
+ "shlex",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "cfg-if"
442
+ version = "1.0.4"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
445
+
446
+ [[package]]
447
+ name = "cfg_aliases"
448
+ version = "0.2.1"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
451
+
452
+ [[package]]
453
+ name = "ciborium"
454
+ version = "0.2.2"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
457
+ dependencies = [
458
+ "ciborium-io",
459
+ "ciborium-ll",
460
+ "serde",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "ciborium-io"
465
+ version = "0.2.2"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
468
+
469
+ [[package]]
470
+ name = "ciborium-ll"
471
+ version = "0.2.2"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
474
+ dependencies = [
475
+ "ciborium-io",
476
+ "half",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "clap"
481
+ version = "4.5.60"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
484
+ dependencies = [
485
+ "clap_builder",
486
+ "clap_derive",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "clap_builder"
491
+ version = "4.5.60"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
494
+ dependencies = [
495
+ "anstream",
496
+ "anstyle",
497
+ "clap_lex",
498
+ "strsim",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "clap_derive"
503
+ version = "4.5.55"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
506
+ dependencies = [
507
+ "heck",
508
+ "proc-macro2",
509
+ "quote",
510
+ "syn",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "clap_lex"
515
+ version = "1.0.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
518
+
519
+ [[package]]
520
+ name = "cmake"
521
+ version = "0.1.57"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
524
+ dependencies = [
525
+ "cc",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "colorchoice"
530
+ version = "1.0.4"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
533
+
534
+ [[package]]
535
+ name = "console-api"
536
+ version = "0.9.0"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "e8599749b6667e2f0c910c1d0dff6901163ff698a52d5a39720f61b5be4b20d3"
539
+ dependencies = [
540
+ "futures-core",
541
+ "prost",
542
+ "prost-types",
543
+ "tonic",
544
+ "tonic-prost",
545
+ "tracing-core",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "console-subscriber"
550
+ version = "0.5.0"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "fb4915b7d8dd960457a1b6c380114c2944f728e7c65294ab247ae6b6f1f37592"
553
+ dependencies = [
554
+ "console-api",
555
+ "crossbeam-channel",
556
+ "crossbeam-utils",
557
+ "futures-task",
558
+ "hdrhistogram",
559
+ "humantime",
560
+ "hyper-util",
561
+ "prost",
562
+ "prost-types",
563
+ "serde",
564
+ "serde_json",
565
+ "thread_local",
566
+ "tokio",
567
+ "tokio-stream",
568
+ "tonic",
569
+ "tracing",
570
+ "tracing-core",
571
+ "tracing-subscriber",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "core-foundation"
576
+ version = "0.10.1"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
579
+ dependencies = [
580
+ "core-foundation-sys",
581
+ "libc",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "core-foundation-sys"
586
+ version = "0.8.7"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
589
+
590
+ [[package]]
591
+ name = "cpufeatures"
592
+ version = "0.2.17"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
595
+ dependencies = [
596
+ "libc",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "crc32fast"
601
+ version = "1.5.0"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
604
+ dependencies = [
605
+ "cfg-if",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "criterion"
610
+ version = "0.5.1"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
613
+ dependencies = [
614
+ "anes",
615
+ "cast",
616
+ "ciborium",
617
+ "clap",
618
+ "criterion-plot",
619
+ "futures",
620
+ "is-terminal",
621
+ "itertools 0.10.5",
622
+ "num-traits",
623
+ "once_cell",
624
+ "oorandom",
625
+ "plotters",
626
+ "rayon",
627
+ "regex",
628
+ "serde",
629
+ "serde_derive",
630
+ "serde_json",
631
+ "tinytemplate",
632
+ "tokio",
633
+ "walkdir",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "criterion-plot"
638
+ version = "0.5.0"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
641
+ dependencies = [
642
+ "cast",
643
+ "itertools 0.10.5",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "crossbeam-channel"
648
+ version = "0.5.15"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
651
+ dependencies = [
652
+ "crossbeam-utils",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "crossbeam-deque"
657
+ version = "0.8.6"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
660
+ dependencies = [
661
+ "crossbeam-epoch",
662
+ "crossbeam-utils",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "crossbeam-epoch"
667
+ version = "0.9.18"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
670
+ dependencies = [
671
+ "crossbeam-utils",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "crossbeam-utils"
676
+ version = "0.8.21"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
679
+
680
+ [[package]]
681
+ name = "crunchy"
682
+ version = "0.2.4"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
685
+
686
+ [[package]]
687
+ name = "crypto-common"
688
+ version = "0.1.7"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
691
+ dependencies = [
692
+ "generic-array",
693
+ "typenum",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "data-encoding"
698
+ version = "2.10.0"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
701
+
702
+ [[package]]
703
+ name = "der-parser"
704
+ version = "10.0.0"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
707
+ dependencies = [
708
+ "asn1-rs",
709
+ "displaydoc",
710
+ "nom",
711
+ "num-bigint",
712
+ "num-traits",
713
+ "rusticata-macros",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "deranged"
718
+ version = "0.5.8"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
721
+ dependencies = [
722
+ "powerfmt",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "digest"
727
+ version = "0.10.7"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
730
+ dependencies = [
731
+ "block-buffer",
732
+ "crypto-common",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "displaydoc"
737
+ version = "0.2.5"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
740
+ dependencies = [
741
+ "proc-macro2",
742
+ "quote",
743
+ "syn",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "dunce"
748
+ version = "1.0.5"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
751
+
752
+ [[package]]
753
+ name = "either"
754
+ version = "1.15.0"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
757
+
758
+ [[package]]
759
+ name = "equivalent"
760
+ version = "1.0.2"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
763
+
764
+ [[package]]
765
+ name = "errno"
766
+ version = "0.3.14"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
769
+ dependencies = [
770
+ "libc",
771
+ "windows-sys 0.61.2",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "find-msvc-tools"
776
+ version = "0.1.9"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
779
+
780
+ [[package]]
781
+ name = "flate2"
782
+ version = "1.1.9"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
785
+ dependencies = [
786
+ "crc32fast",
787
+ "miniz_oxide",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "fnv"
792
+ version = "1.0.7"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
795
+
796
+ [[package]]
797
+ name = "fs_extra"
798
+ version = "1.3.0"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
801
+
802
+ [[package]]
803
+ name = "futures"
804
+ version = "0.3.32"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
807
+ dependencies = [
808
+ "futures-channel",
809
+ "futures-core",
810
+ "futures-executor",
811
+ "futures-io",
812
+ "futures-sink",
813
+ "futures-task",
814
+ "futures-util",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "futures-channel"
819
+ version = "0.3.32"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
822
+ dependencies = [
823
+ "futures-core",
824
+ "futures-sink",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "futures-core"
829
+ version = "0.3.32"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
832
+
833
+ [[package]]
834
+ name = "futures-executor"
835
+ version = "0.3.32"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
838
+ dependencies = [
839
+ "futures-core",
840
+ "futures-task",
841
+ "futures-util",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "futures-io"
846
+ version = "0.3.32"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
849
+
850
+ [[package]]
851
+ name = "futures-macro"
852
+ version = "0.3.32"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
855
+ dependencies = [
856
+ "proc-macro2",
857
+ "quote",
858
+ "syn",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "futures-sink"
863
+ version = "0.3.32"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
866
+
867
+ [[package]]
868
+ name = "futures-task"
869
+ version = "0.3.32"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
872
+
873
+ [[package]]
874
+ name = "futures-util"
875
+ version = "0.3.32"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
878
+ dependencies = [
879
+ "futures-channel",
880
+ "futures-core",
881
+ "futures-io",
882
+ "futures-macro",
883
+ "futures-sink",
884
+ "futures-task",
885
+ "memchr",
886
+ "pin-project-lite",
887
+ "slab",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "generic-array"
892
+ version = "0.14.7"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
895
+ dependencies = [
896
+ "typenum",
897
+ "version_check",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "getrandom"
902
+ version = "0.2.17"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
905
+ dependencies = [
906
+ "cfg-if",
907
+ "libc",
908
+ "wasi",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "getrandom"
913
+ version = "0.3.4"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
916
+ dependencies = [
917
+ "cfg-if",
918
+ "libc",
919
+ "r-efi",
920
+ "wasip2",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "h2"
925
+ version = "0.4.13"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
928
+ dependencies = [
929
+ "atomic-waker",
930
+ "bytes",
931
+ "fnv",
932
+ "futures-core",
933
+ "futures-sink",
934
+ "http",
935
+ "indexmap",
936
+ "slab",
937
+ "tokio",
938
+ "tokio-util",
939
+ "tracing",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "half"
944
+ version = "2.7.1"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
947
+ dependencies = [
948
+ "cfg-if",
949
+ "crunchy",
950
+ "zerocopy",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "hashbrown"
955
+ version = "0.16.1"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
958
+
959
+ [[package]]
960
+ name = "hdrhistogram"
961
+ version = "7.5.4"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d"
964
+ dependencies = [
965
+ "base64 0.21.7",
966
+ "byteorder",
967
+ "crossbeam-channel",
968
+ "flate2",
969
+ "nom",
970
+ "num-traits",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "heck"
975
+ version = "0.5.0"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
978
+
979
+ [[package]]
980
+ name = "hermit-abi"
981
+ version = "0.5.2"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
984
+
985
+ [[package]]
986
+ name = "http"
987
+ version = "1.4.0"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
990
+ dependencies = [
991
+ "bytes",
992
+ "itoa",
993
+ ]
994
+
995
+ [[package]]
996
+ name = "http-body"
997
+ version = "1.0.1"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1000
+ dependencies = [
1001
+ "bytes",
1002
+ "http",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "http-body-util"
1007
+ version = "0.1.3"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1010
+ dependencies = [
1011
+ "bytes",
1012
+ "futures-core",
1013
+ "http",
1014
+ "http-body",
1015
+ "pin-project-lite",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "httparse"
1020
+ version = "1.10.1"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1023
+
1024
+ [[package]]
1025
+ name = "httpdate"
1026
+ version = "1.0.3"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1029
+
1030
+ [[package]]
1031
+ name = "humantime"
1032
+ version = "2.3.0"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1035
+
1036
+ [[package]]
1037
+ name = "hyper"
1038
+ version = "1.8.1"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1041
+ dependencies = [
1042
+ "atomic-waker",
1043
+ "bytes",
1044
+ "futures-channel",
1045
+ "futures-core",
1046
+ "h2",
1047
+ "http",
1048
+ "http-body",
1049
+ "httparse",
1050
+ "httpdate",
1051
+ "itoa",
1052
+ "pin-project-lite",
1053
+ "pin-utils",
1054
+ "smallvec",
1055
+ "tokio",
1056
+ "want",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "hyper-timeout"
1061
+ version = "0.5.2"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1064
+ dependencies = [
1065
+ "hyper",
1066
+ "hyper-util",
1067
+ "pin-project-lite",
1068
+ "tokio",
1069
+ "tower-service",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "hyper-util"
1074
+ version = "0.1.20"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1077
+ dependencies = [
1078
+ "bytes",
1079
+ "futures-channel",
1080
+ "futures-util",
1081
+ "http",
1082
+ "http-body",
1083
+ "hyper",
1084
+ "libc",
1085
+ "pin-project-lite",
1086
+ "socket2",
1087
+ "tokio",
1088
+ "tower-service",
1089
+ "tracing",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "indexmap"
1094
+ version = "2.13.0"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1097
+ dependencies = [
1098
+ "equivalent",
1099
+ "hashbrown",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "io-kit-sys"
1104
+ version = "0.4.1"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "617ee6cf8e3f66f3b4ea67a4058564628cde41901316e19f559e14c7c72c5e7b"
1107
+ dependencies = [
1108
+ "core-foundation-sys",
1109
+ "mach2",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "is-terminal"
1114
+ version = "0.4.17"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1117
+ dependencies = [
1118
+ "hermit-abi",
1119
+ "libc",
1120
+ "windows-sys 0.61.2",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "is_terminal_polyfill"
1125
+ version = "1.70.2"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1128
+
1129
+ [[package]]
1130
+ name = "itertools"
1131
+ version = "0.10.5"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1134
+ dependencies = [
1135
+ "either",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "itertools"
1140
+ version = "0.14.0"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1143
+ dependencies = [
1144
+ "either",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "itoa"
1149
+ version = "1.0.17"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1152
+
1153
+ [[package]]
1154
+ name = "jobserver"
1155
+ version = "0.1.34"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1158
+ dependencies = [
1159
+ "getrandom 0.3.4",
1160
+ "libc",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "js-sys"
1165
+ version = "0.3.91"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1168
+ dependencies = [
1169
+ "once_cell",
1170
+ "wasm-bindgen",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "lazy_static"
1175
+ version = "1.5.0"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1178
+
1179
+ [[package]]
1180
+ name = "libc"
1181
+ version = "0.2.182"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
1184
+
1185
+ [[package]]
1186
+ name = "libm"
1187
+ version = "0.2.16"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1190
+
1191
+ [[package]]
1192
+ name = "log"
1193
+ version = "0.4.29"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1196
+
1197
+ [[package]]
1198
+ name = "mach2"
1199
+ version = "0.4.3"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
1202
+ dependencies = [
1203
+ "libc",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "matchers"
1208
+ version = "0.2.0"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1211
+ dependencies = [
1212
+ "regex-automata",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "matchit"
1217
+ version = "0.8.4"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1220
+
1221
+ [[package]]
1222
+ name = "memchr"
1223
+ version = "2.8.0"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1226
+
1227
+ [[package]]
1228
+ name = "mime"
1229
+ version = "0.3.17"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1232
+
1233
+ [[package]]
1234
+ name = "minicov"
1235
+ version = "0.3.8"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
1238
+ dependencies = [
1239
+ "cc",
1240
+ "walkdir",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "minimal-lexical"
1245
+ version = "0.2.1"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1248
+
1249
+ [[package]]
1250
+ name = "miniz_oxide"
1251
+ version = "0.8.9"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1254
+ dependencies = [
1255
+ "adler2",
1256
+ "simd-adler32",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "mio"
1261
+ version = "1.1.1"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1264
+ dependencies = [
1265
+ "libc",
1266
+ "log",
1267
+ "wasi",
1268
+ "windows-sys 0.61.2",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "mio-serial"
1273
+ version = "5.0.6"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "029e1f407e261176a983a6599c084efd322d9301028055c87174beac71397ba3"
1276
+ dependencies = [
1277
+ "log",
1278
+ "mio",
1279
+ "nix 0.29.0",
1280
+ "serialport",
1281
+ "winapi",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "nix"
1286
+ version = "0.26.4"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
1289
+ dependencies = [
1290
+ "bitflags 1.3.2",
1291
+ "cfg-if",
1292
+ "libc",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "nix"
1297
+ version = "0.29.0"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1300
+ dependencies = [
1301
+ "bitflags 2.11.0",
1302
+ "cfg-if",
1303
+ "cfg_aliases",
1304
+ "libc",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "nom"
1309
+ version = "7.1.3"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1312
+ dependencies = [
1313
+ "memchr",
1314
+ "minimal-lexical",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "ntapi"
1319
+ version = "0.4.3"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
1322
+ dependencies = [
1323
+ "winapi",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "nu-ansi-term"
1328
+ version = "0.50.3"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1331
+ dependencies = [
1332
+ "windows-sys 0.61.2",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "num-bigint"
1337
+ version = "0.4.6"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1340
+ dependencies = [
1341
+ "num-integer",
1342
+ "num-traits",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "num-conv"
1347
+ version = "0.2.0"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1350
+
1351
+ [[package]]
1352
+ name = "num-integer"
1353
+ version = "0.1.46"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1356
+ dependencies = [
1357
+ "num-traits",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "num-traits"
1362
+ version = "0.2.19"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1365
+ dependencies = [
1366
+ "autocfg",
1367
+ "libm",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "objc2-core-foundation"
1372
+ version = "0.3.1"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
1375
+ dependencies = [
1376
+ "bitflags 2.11.0",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "objc2-io-kit"
1381
+ version = "0.3.1"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "71c1c64d6120e51cd86033f67176b1cb66780c2efe34dec55176f77befd93c0a"
1384
+ dependencies = [
1385
+ "libc",
1386
+ "objc2-core-foundation",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "oid-registry"
1391
+ version = "0.8.1"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
1394
+ dependencies = [
1395
+ "asn1-rs",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "once_cell"
1400
+ version = "1.21.3"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1403
+
1404
+ [[package]]
1405
+ name = "once_cell_polyfill"
1406
+ version = "1.70.2"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1409
+
1410
+ [[package]]
1411
+ name = "oorandom"
1412
+ version = "11.1.5"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1415
+
1416
+ [[package]]
1417
+ name = "openssl-probe"
1418
+ version = "0.2.1"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1421
+
1422
+ [[package]]
1423
+ name = "pem"
1424
+ version = "3.0.6"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1427
+ dependencies = [
1428
+ "base64 0.22.1",
1429
+ "serde_core",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "percent-encoding"
1434
+ version = "2.3.2"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1437
+
1438
+ [[package]]
1439
+ name = "pin-project"
1440
+ version = "1.1.11"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
1443
+ dependencies = [
1444
+ "pin-project-internal",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "pin-project-internal"
1449
+ version = "1.1.11"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
1452
+ dependencies = [
1453
+ "proc-macro2",
1454
+ "quote",
1455
+ "syn",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "pin-project-lite"
1460
+ version = "0.2.17"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1463
+
1464
+ [[package]]
1465
+ name = "pin-utils"
1466
+ version = "0.1.0"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1469
+
1470
+ [[package]]
1471
+ name = "plotters"
1472
+ version = "0.3.7"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1475
+ dependencies = [
1476
+ "num-traits",
1477
+ "plotters-backend",
1478
+ "plotters-svg",
1479
+ "wasm-bindgen",
1480
+ "web-sys",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "plotters-backend"
1485
+ version = "0.3.7"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1488
+
1489
+ [[package]]
1490
+ name = "plotters-svg"
1491
+ version = "0.3.7"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1494
+ dependencies = [
1495
+ "plotters-backend",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "portable-atomic"
1500
+ version = "1.13.1"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1503
+
1504
+ [[package]]
1505
+ name = "powerfmt"
1506
+ version = "0.2.0"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1509
+
1510
+ [[package]]
1511
+ name = "ppv-lite86"
1512
+ version = "0.2.21"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1515
+ dependencies = [
1516
+ "zerocopy",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "proc-macro2"
1521
+ version = "1.0.106"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1524
+ dependencies = [
1525
+ "unicode-ident",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "prost"
1530
+ version = "0.14.3"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
1533
+ dependencies = [
1534
+ "bytes",
1535
+ "prost-derive",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "prost-derive"
1540
+ version = "0.14.3"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
1543
+ dependencies = [
1544
+ "anyhow",
1545
+ "itertools 0.14.0",
1546
+ "proc-macro2",
1547
+ "quote",
1548
+ "syn",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "prost-types"
1553
+ version = "0.14.3"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
1556
+ dependencies = [
1557
+ "prost",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "pyo3"
1562
+ version = "0.28.2"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
1565
+ dependencies = [
1566
+ "libc",
1567
+ "once_cell",
1568
+ "portable-atomic",
1569
+ "pyo3-build-config",
1570
+ "pyo3-ffi",
1571
+ "pyo3-macros",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "pyo3-async-runtimes"
1576
+ version = "0.28.0"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
1579
+ dependencies = [
1580
+ "futures-channel",
1581
+ "futures-util",
1582
+ "once_cell",
1583
+ "pin-project-lite",
1584
+ "pyo3",
1585
+ "tokio",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "pyo3-build-config"
1590
+ version = "0.28.2"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
1593
+ dependencies = [
1594
+ "target-lexicon",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "pyo3-ffi"
1599
+ version = "0.28.2"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
1602
+ dependencies = [
1603
+ "libc",
1604
+ "pyo3-build-config",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "pyo3-macros"
1609
+ version = "0.28.2"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
1612
+ dependencies = [
1613
+ "proc-macro2",
1614
+ "pyo3-macros-backend",
1615
+ "quote",
1616
+ "syn",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "pyo3-macros-backend"
1621
+ version = "0.28.2"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
1624
+ dependencies = [
1625
+ "heck",
1626
+ "proc-macro2",
1627
+ "pyo3-build-config",
1628
+ "quote",
1629
+ "syn",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "quote"
1634
+ version = "1.0.45"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1637
+ dependencies = [
1638
+ "proc-macro2",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "r-efi"
1643
+ version = "5.3.0"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1646
+
1647
+ [[package]]
1648
+ name = "rand"
1649
+ version = "0.9.2"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1652
+ dependencies = [
1653
+ "rand_chacha",
1654
+ "rand_core",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "rand_chacha"
1659
+ version = "0.9.0"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1662
+ dependencies = [
1663
+ "ppv-lite86",
1664
+ "rand_core",
1665
+ ]
1666
+
1667
+ [[package]]
1668
+ name = "rand_core"
1669
+ version = "0.9.5"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1672
+ dependencies = [
1673
+ "getrandom 0.3.4",
1674
+ ]
1675
+
1676
+ [[package]]
1677
+ name = "rayon"
1678
+ version = "1.11.0"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1681
+ dependencies = [
1682
+ "either",
1683
+ "rayon-core",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "rayon-core"
1688
+ version = "1.13.0"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1691
+ dependencies = [
1692
+ "crossbeam-deque",
1693
+ "crossbeam-utils",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "rcgen"
1698
+ version = "0.14.7"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "10b99e0098aa4082912d4c649628623db6aba77335e4f4569ff5083a6448b32e"
1701
+ dependencies = [
1702
+ "aws-lc-rs",
1703
+ "pem",
1704
+ "rustls-pki-types",
1705
+ "time",
1706
+ "x509-parser",
1707
+ "yasna",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "regex"
1712
+ version = "1.12.3"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1715
+ dependencies = [
1716
+ "aho-corasick",
1717
+ "memchr",
1718
+ "regex-automata",
1719
+ "regex-syntax",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "regex-automata"
1724
+ version = "0.4.14"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1727
+ dependencies = [
1728
+ "aho-corasick",
1729
+ "memchr",
1730
+ "regex-syntax",
1731
+ ]
1732
+
1733
+ [[package]]
1734
+ name = "regex-syntax"
1735
+ version = "0.8.10"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1738
+
1739
+ [[package]]
1740
+ name = "ring"
1741
+ version = "0.17.14"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1744
+ dependencies = [
1745
+ "cc",
1746
+ "cfg-if",
1747
+ "getrandom 0.2.17",
1748
+ "libc",
1749
+ "untrusted 0.9.0",
1750
+ "windows-sys 0.52.0",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "rusticata-macros"
1755
+ version = "4.1.0"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
1758
+ dependencies = [
1759
+ "nom",
1760
+ ]
1761
+
1762
+ [[package]]
1763
+ name = "rustls"
1764
+ version = "0.23.37"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
1767
+ dependencies = [
1768
+ "aws-lc-rs",
1769
+ "log",
1770
+ "once_cell",
1771
+ "rustls-pki-types",
1772
+ "rustls-webpki",
1773
+ "subtle",
1774
+ "zeroize",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "rustls-native-certs"
1779
+ version = "0.8.3"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
1782
+ dependencies = [
1783
+ "openssl-probe",
1784
+ "rustls-pki-types",
1785
+ "schannel",
1786
+ "security-framework",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "rustls-pki-types"
1791
+ version = "1.14.0"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1794
+ dependencies = [
1795
+ "zeroize",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "rustls-webpki"
1800
+ version = "0.103.9"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
1803
+ dependencies = [
1804
+ "aws-lc-rs",
1805
+ "ring",
1806
+ "rustls-pki-types",
1807
+ "untrusted 0.9.0",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "rustversion"
1812
+ version = "1.0.22"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1815
+
1816
+ [[package]]
1817
+ name = "rusty-bacnet"
1818
+ version = "0.4.0"
1819
+ dependencies = [
1820
+ "bacnet-client",
1821
+ "bacnet-encoding",
1822
+ "bacnet-objects",
1823
+ "bacnet-server",
1824
+ "bacnet-services",
1825
+ "bacnet-transport",
1826
+ "bacnet-types",
1827
+ "bytes",
1828
+ "pyo3",
1829
+ "pyo3-async-runtimes",
1830
+ "rustls-native-certs",
1831
+ "tokio",
1832
+ "tokio-rustls",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "same-file"
1837
+ version = "1.0.6"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1840
+ dependencies = [
1841
+ "winapi-util",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "schannel"
1846
+ version = "0.1.28"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
1849
+ dependencies = [
1850
+ "windows-sys 0.61.2",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "scopeguard"
1855
+ version = "1.2.0"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1858
+
1859
+ [[package]]
1860
+ name = "security-framework"
1861
+ version = "3.7.0"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1864
+ dependencies = [
1865
+ "bitflags 2.11.0",
1866
+ "core-foundation",
1867
+ "core-foundation-sys",
1868
+ "libc",
1869
+ "security-framework-sys",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "security-framework-sys"
1874
+ version = "2.17.0"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1877
+ dependencies = [
1878
+ "core-foundation-sys",
1879
+ "libc",
1880
+ ]
1881
+
1882
+ [[package]]
1883
+ name = "serde"
1884
+ version = "1.0.228"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1887
+ dependencies = [
1888
+ "serde_core",
1889
+ "serde_derive",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "serde-wasm-bindgen"
1894
+ version = "0.6.5"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
1897
+ dependencies = [
1898
+ "js-sys",
1899
+ "serde",
1900
+ "wasm-bindgen",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "serde_core"
1905
+ version = "1.0.228"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1908
+ dependencies = [
1909
+ "serde_derive",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "serde_derive"
1914
+ version = "1.0.228"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1917
+ dependencies = [
1918
+ "proc-macro2",
1919
+ "quote",
1920
+ "syn",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "serde_json"
1925
+ version = "1.0.149"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1928
+ dependencies = [
1929
+ "itoa",
1930
+ "memchr",
1931
+ "serde",
1932
+ "serde_core",
1933
+ "zmij",
1934
+ ]
1935
+
1936
+ [[package]]
1937
+ name = "serialport"
1938
+ version = "4.7.3"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "2acaf3f973e8616d7ceac415f53fc60e190b2a686fbcf8d27d0256c741c5007b"
1941
+ dependencies = [
1942
+ "bitflags 2.11.0",
1943
+ "cfg-if",
1944
+ "core-foundation",
1945
+ "core-foundation-sys",
1946
+ "io-kit-sys",
1947
+ "mach2",
1948
+ "nix 0.26.4",
1949
+ "scopeguard",
1950
+ "unescaper",
1951
+ "winapi",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "sha1"
1956
+ version = "0.10.6"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1959
+ dependencies = [
1960
+ "cfg-if",
1961
+ "cpufeatures",
1962
+ "digest",
1963
+ ]
1964
+
1965
+ [[package]]
1966
+ name = "sharded-slab"
1967
+ version = "0.1.7"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1970
+ dependencies = [
1971
+ "lazy_static",
1972
+ ]
1973
+
1974
+ [[package]]
1975
+ name = "shlex"
1976
+ version = "1.3.0"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1979
+
1980
+ [[package]]
1981
+ name = "signal-hook-registry"
1982
+ version = "1.4.8"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1985
+ dependencies = [
1986
+ "errno",
1987
+ "libc",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "simd-adler32"
1992
+ version = "0.3.8"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1995
+
1996
+ [[package]]
1997
+ name = "slab"
1998
+ version = "0.4.12"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2001
+
2002
+ [[package]]
2003
+ name = "smallvec"
2004
+ version = "1.15.1"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2007
+
2008
+ [[package]]
2009
+ name = "socket2"
2010
+ version = "0.6.2"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2013
+ dependencies = [
2014
+ "libc",
2015
+ "windows-sys 0.60.2",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "strsim"
2020
+ version = "0.11.1"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2023
+
2024
+ [[package]]
2025
+ name = "subtle"
2026
+ version = "2.6.1"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2029
+
2030
+ [[package]]
2031
+ name = "syn"
2032
+ version = "2.0.117"
2033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2034
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2035
+ dependencies = [
2036
+ "proc-macro2",
2037
+ "quote",
2038
+ "unicode-ident",
2039
+ ]
2040
+
2041
+ [[package]]
2042
+ name = "sync_wrapper"
2043
+ version = "1.0.2"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2046
+
2047
+ [[package]]
2048
+ name = "synstructure"
2049
+ version = "0.13.2"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2052
+ dependencies = [
2053
+ "proc-macro2",
2054
+ "quote",
2055
+ "syn",
2056
+ ]
2057
+
2058
+ [[package]]
2059
+ name = "sysinfo"
2060
+ version = "0.38.3"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "d03c61d2a49c649a15c407338afe7accafde9dac869995dccb73e5f7ef7d9034"
2063
+ dependencies = [
2064
+ "libc",
2065
+ "memchr",
2066
+ "ntapi",
2067
+ "objc2-core-foundation",
2068
+ "objc2-io-kit",
2069
+ "windows",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "target-lexicon"
2074
+ version = "0.13.5"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2077
+
2078
+ [[package]]
2079
+ name = "thiserror"
2080
+ version = "2.0.18"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2083
+ dependencies = [
2084
+ "thiserror-impl",
2085
+ ]
2086
+
2087
+ [[package]]
2088
+ name = "thiserror-impl"
2089
+ version = "2.0.18"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2092
+ dependencies = [
2093
+ "proc-macro2",
2094
+ "quote",
2095
+ "syn",
2096
+ ]
2097
+
2098
+ [[package]]
2099
+ name = "thread_local"
2100
+ version = "1.1.9"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2103
+ dependencies = [
2104
+ "cfg-if",
2105
+ ]
2106
+
2107
+ [[package]]
2108
+ name = "time"
2109
+ version = "0.3.47"
2110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2112
+ dependencies = [
2113
+ "deranged",
2114
+ "itoa",
2115
+ "num-conv",
2116
+ "powerfmt",
2117
+ "serde_core",
2118
+ "time-core",
2119
+ "time-macros",
2120
+ ]
2121
+
2122
+ [[package]]
2123
+ name = "time-core"
2124
+ version = "0.1.8"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2127
+
2128
+ [[package]]
2129
+ name = "time-macros"
2130
+ version = "0.2.27"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2133
+ dependencies = [
2134
+ "num-conv",
2135
+ "time-core",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "tinytemplate"
2140
+ version = "1.2.1"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2143
+ dependencies = [
2144
+ "serde",
2145
+ "serde_json",
2146
+ ]
2147
+
2148
+ [[package]]
2149
+ name = "tokio"
2150
+ version = "1.50.0"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
2153
+ dependencies = [
2154
+ "bytes",
2155
+ "libc",
2156
+ "mio",
2157
+ "pin-project-lite",
2158
+ "signal-hook-registry",
2159
+ "socket2",
2160
+ "tokio-macros",
2161
+ "tracing",
2162
+ "windows-sys 0.61.2",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "tokio-macros"
2167
+ version = "2.6.1"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
2170
+ dependencies = [
2171
+ "proc-macro2",
2172
+ "quote",
2173
+ "syn",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "tokio-rustls"
2178
+ version = "0.26.4"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2181
+ dependencies = [
2182
+ "rustls",
2183
+ "tokio",
2184
+ ]
2185
+
2186
+ [[package]]
2187
+ name = "tokio-serial"
2188
+ version = "5.4.5"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "aa1d5427f11ba7c5e6384521cfd76f2d64572ff29f3f4f7aa0f496282923fdc8"
2191
+ dependencies = [
2192
+ "cfg-if",
2193
+ "futures",
2194
+ "log",
2195
+ "mio-serial",
2196
+ "serialport",
2197
+ "tokio",
2198
+ ]
2199
+
2200
+ [[package]]
2201
+ name = "tokio-stream"
2202
+ version = "0.1.18"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2205
+ dependencies = [
2206
+ "futures-core",
2207
+ "pin-project-lite",
2208
+ "tokio",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "tokio-tungstenite"
2213
+ version = "0.28.0"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
2216
+ dependencies = [
2217
+ "futures-util",
2218
+ "log",
2219
+ "rustls",
2220
+ "rustls-native-certs",
2221
+ "rustls-pki-types",
2222
+ "tokio",
2223
+ "tokio-rustls",
2224
+ "tungstenite",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "tokio-util"
2229
+ version = "0.7.18"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2232
+ dependencies = [
2233
+ "bytes",
2234
+ "futures-core",
2235
+ "futures-sink",
2236
+ "pin-project-lite",
2237
+ "tokio",
2238
+ ]
2239
+
2240
+ [[package]]
2241
+ name = "tonic"
2242
+ version = "0.14.5"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "fec7c61a0695dc1887c1b53952990f3ad2e3a31453e1f49f10e75424943a93ec"
2245
+ dependencies = [
2246
+ "async-trait",
2247
+ "axum",
2248
+ "base64 0.22.1",
2249
+ "bytes",
2250
+ "h2",
2251
+ "http",
2252
+ "http-body",
2253
+ "http-body-util",
2254
+ "hyper",
2255
+ "hyper-timeout",
2256
+ "hyper-util",
2257
+ "percent-encoding",
2258
+ "pin-project",
2259
+ "socket2",
2260
+ "sync_wrapper",
2261
+ "tokio",
2262
+ "tokio-stream",
2263
+ "tower",
2264
+ "tower-layer",
2265
+ "tower-service",
2266
+ "tracing",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "tonic-prost"
2271
+ version = "0.14.5"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309"
2274
+ dependencies = [
2275
+ "bytes",
2276
+ "prost",
2277
+ "tonic",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "tower"
2282
+ version = "0.5.3"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2285
+ dependencies = [
2286
+ "futures-core",
2287
+ "futures-util",
2288
+ "indexmap",
2289
+ "pin-project-lite",
2290
+ "slab",
2291
+ "sync_wrapper",
2292
+ "tokio",
2293
+ "tokio-util",
2294
+ "tower-layer",
2295
+ "tower-service",
2296
+ "tracing",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "tower-layer"
2301
+ version = "0.3.3"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2304
+
2305
+ [[package]]
2306
+ name = "tower-service"
2307
+ version = "0.3.3"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2310
+
2311
+ [[package]]
2312
+ name = "tracing"
2313
+ version = "0.1.44"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2316
+ dependencies = [
2317
+ "pin-project-lite",
2318
+ "tracing-attributes",
2319
+ "tracing-core",
2320
+ ]
2321
+
2322
+ [[package]]
2323
+ name = "tracing-attributes"
2324
+ version = "0.1.31"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2327
+ dependencies = [
2328
+ "proc-macro2",
2329
+ "quote",
2330
+ "syn",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "tracing-core"
2335
+ version = "0.1.36"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2338
+ dependencies = [
2339
+ "once_cell",
2340
+ "valuable",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "tracing-log"
2345
+ version = "0.2.0"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2348
+ dependencies = [
2349
+ "log",
2350
+ "once_cell",
2351
+ "tracing-core",
2352
+ ]
2353
+
2354
+ [[package]]
2355
+ name = "tracing-subscriber"
2356
+ version = "0.3.22"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2359
+ dependencies = [
2360
+ "matchers",
2361
+ "nu-ansi-term",
2362
+ "once_cell",
2363
+ "regex-automata",
2364
+ "sharded-slab",
2365
+ "smallvec",
2366
+ "thread_local",
2367
+ "tracing",
2368
+ "tracing-core",
2369
+ "tracing-log",
2370
+ ]
2371
+
2372
+ [[package]]
2373
+ name = "try-lock"
2374
+ version = "0.2.5"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2377
+
2378
+ [[package]]
2379
+ name = "tungstenite"
2380
+ version = "0.28.0"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
2383
+ dependencies = [
2384
+ "bytes",
2385
+ "data-encoding",
2386
+ "http",
2387
+ "httparse",
2388
+ "log",
2389
+ "rand",
2390
+ "rustls",
2391
+ "rustls-pki-types",
2392
+ "sha1",
2393
+ "thiserror",
2394
+ "utf-8",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "typenum"
2399
+ version = "1.19.0"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2402
+
2403
+ [[package]]
2404
+ name = "unescaper"
2405
+ version = "0.1.8"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "4064ed685c487dbc25bd3f0e9548f2e34bab9d18cefc700f9ec2dba74ba1138e"
2408
+ dependencies = [
2409
+ "thiserror",
2410
+ ]
2411
+
2412
+ [[package]]
2413
+ name = "unicode-ident"
2414
+ version = "1.0.24"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2417
+
2418
+ [[package]]
2419
+ name = "untrusted"
2420
+ version = "0.7.1"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2423
+
2424
+ [[package]]
2425
+ name = "untrusted"
2426
+ version = "0.9.0"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2429
+
2430
+ [[package]]
2431
+ name = "utf-8"
2432
+ version = "0.7.6"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2435
+
2436
+ [[package]]
2437
+ name = "utf8parse"
2438
+ version = "0.2.2"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2441
+
2442
+ [[package]]
2443
+ name = "valuable"
2444
+ version = "0.1.1"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2447
+
2448
+ [[package]]
2449
+ name = "version_check"
2450
+ version = "0.9.5"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2453
+
2454
+ [[package]]
2455
+ name = "walkdir"
2456
+ version = "2.5.0"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2459
+ dependencies = [
2460
+ "same-file",
2461
+ "winapi-util",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "want"
2466
+ version = "0.3.1"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2469
+ dependencies = [
2470
+ "try-lock",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "wasi"
2475
+ version = "0.11.1+wasi-snapshot-preview1"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2478
+
2479
+ [[package]]
2480
+ name = "wasip2"
2481
+ version = "1.0.2+wasi-0.2.9"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2484
+ dependencies = [
2485
+ "wit-bindgen",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "wasm-bindgen"
2490
+ version = "0.2.114"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
2493
+ dependencies = [
2494
+ "cfg-if",
2495
+ "once_cell",
2496
+ "rustversion",
2497
+ "wasm-bindgen-macro",
2498
+ "wasm-bindgen-shared",
2499
+ ]
2500
+
2501
+ [[package]]
2502
+ name = "wasm-bindgen-futures"
2503
+ version = "0.4.64"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
2506
+ dependencies = [
2507
+ "cfg-if",
2508
+ "futures-util",
2509
+ "js-sys",
2510
+ "once_cell",
2511
+ "wasm-bindgen",
2512
+ "web-sys",
2513
+ ]
2514
+
2515
+ [[package]]
2516
+ name = "wasm-bindgen-macro"
2517
+ version = "0.2.114"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
2520
+ dependencies = [
2521
+ "quote",
2522
+ "wasm-bindgen-macro-support",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "wasm-bindgen-macro-support"
2527
+ version = "0.2.114"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
2530
+ dependencies = [
2531
+ "bumpalo",
2532
+ "proc-macro2",
2533
+ "quote",
2534
+ "syn",
2535
+ "wasm-bindgen-shared",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "wasm-bindgen-shared"
2540
+ version = "0.2.114"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
2543
+ dependencies = [
2544
+ "unicode-ident",
2545
+ ]
2546
+
2547
+ [[package]]
2548
+ name = "wasm-bindgen-test"
2549
+ version = "0.3.64"
2550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2551
+ checksum = "6311c867385cc7d5602463b31825d454d0837a3aba7cdb5e56d5201792a3f7fe"
2552
+ dependencies = [
2553
+ "async-trait",
2554
+ "cast",
2555
+ "js-sys",
2556
+ "libm",
2557
+ "minicov",
2558
+ "nu-ansi-term",
2559
+ "num-traits",
2560
+ "oorandom",
2561
+ "serde",
2562
+ "serde_json",
2563
+ "wasm-bindgen",
2564
+ "wasm-bindgen-futures",
2565
+ "wasm-bindgen-test-macro",
2566
+ "wasm-bindgen-test-shared",
2567
+ ]
2568
+
2569
+ [[package]]
2570
+ name = "wasm-bindgen-test-macro"
2571
+ version = "0.3.64"
2572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2573
+ checksum = "67008cdde4769831958536b0f11b3bdd0380bde882be17fff9c2f34bb4549abd"
2574
+ dependencies = [
2575
+ "proc-macro2",
2576
+ "quote",
2577
+ "syn",
2578
+ ]
2579
+
2580
+ [[package]]
2581
+ name = "wasm-bindgen-test-shared"
2582
+ version = "0.2.114"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "cfe29135b180b72b04c74aa97b2b4a2ef275161eff9a6c7955ea9eaedc7e1d4e"
2585
+
2586
+ [[package]]
2587
+ name = "web-sys"
2588
+ version = "0.3.91"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
2591
+ dependencies = [
2592
+ "js-sys",
2593
+ "wasm-bindgen",
2594
+ ]
2595
+
2596
+ [[package]]
2597
+ name = "winapi"
2598
+ version = "0.3.9"
2599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2600
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2601
+ dependencies = [
2602
+ "winapi-i686-pc-windows-gnu",
2603
+ "winapi-x86_64-pc-windows-gnu",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "winapi-i686-pc-windows-gnu"
2608
+ version = "0.4.0"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2611
+
2612
+ [[package]]
2613
+ name = "winapi-util"
2614
+ version = "0.1.11"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2617
+ dependencies = [
2618
+ "windows-sys 0.61.2",
2619
+ ]
2620
+
2621
+ [[package]]
2622
+ name = "winapi-x86_64-pc-windows-gnu"
2623
+ version = "0.4.0"
2624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2625
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2626
+
2627
+ [[package]]
2628
+ name = "windows"
2629
+ version = "0.62.2"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
2632
+ dependencies = [
2633
+ "windows-collections",
2634
+ "windows-core",
2635
+ "windows-future",
2636
+ "windows-numerics",
2637
+ ]
2638
+
2639
+ [[package]]
2640
+ name = "windows-collections"
2641
+ version = "0.3.2"
2642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2643
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
2644
+ dependencies = [
2645
+ "windows-core",
2646
+ ]
2647
+
2648
+ [[package]]
2649
+ name = "windows-core"
2650
+ version = "0.62.2"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2653
+ dependencies = [
2654
+ "windows-implement",
2655
+ "windows-interface",
2656
+ "windows-link",
2657
+ "windows-result",
2658
+ "windows-strings",
2659
+ ]
2660
+
2661
+ [[package]]
2662
+ name = "windows-future"
2663
+ version = "0.3.2"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
2666
+ dependencies = [
2667
+ "windows-core",
2668
+ "windows-link",
2669
+ "windows-threading",
2670
+ ]
2671
+
2672
+ [[package]]
2673
+ name = "windows-implement"
2674
+ version = "0.60.2"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2677
+ dependencies = [
2678
+ "proc-macro2",
2679
+ "quote",
2680
+ "syn",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "windows-interface"
2685
+ version = "0.59.3"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2688
+ dependencies = [
2689
+ "proc-macro2",
2690
+ "quote",
2691
+ "syn",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "windows-link"
2696
+ version = "0.2.1"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2699
+
2700
+ [[package]]
2701
+ name = "windows-numerics"
2702
+ version = "0.3.1"
2703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2704
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
2705
+ dependencies = [
2706
+ "windows-core",
2707
+ "windows-link",
2708
+ ]
2709
+
2710
+ [[package]]
2711
+ name = "windows-result"
2712
+ version = "0.4.1"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2715
+ dependencies = [
2716
+ "windows-link",
2717
+ ]
2718
+
2719
+ [[package]]
2720
+ name = "windows-strings"
2721
+ version = "0.5.1"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2724
+ dependencies = [
2725
+ "windows-link",
2726
+ ]
2727
+
2728
+ [[package]]
2729
+ name = "windows-sys"
2730
+ version = "0.52.0"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2733
+ dependencies = [
2734
+ "windows-targets 0.52.6",
2735
+ ]
2736
+
2737
+ [[package]]
2738
+ name = "windows-sys"
2739
+ version = "0.60.2"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2742
+ dependencies = [
2743
+ "windows-targets 0.53.5",
2744
+ ]
2745
+
2746
+ [[package]]
2747
+ name = "windows-sys"
2748
+ version = "0.61.2"
2749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2750
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2751
+ dependencies = [
2752
+ "windows-link",
2753
+ ]
2754
+
2755
+ [[package]]
2756
+ name = "windows-targets"
2757
+ version = "0.52.6"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2760
+ dependencies = [
2761
+ "windows_aarch64_gnullvm 0.52.6",
2762
+ "windows_aarch64_msvc 0.52.6",
2763
+ "windows_i686_gnu 0.52.6",
2764
+ "windows_i686_gnullvm 0.52.6",
2765
+ "windows_i686_msvc 0.52.6",
2766
+ "windows_x86_64_gnu 0.52.6",
2767
+ "windows_x86_64_gnullvm 0.52.6",
2768
+ "windows_x86_64_msvc 0.52.6",
2769
+ ]
2770
+
2771
+ [[package]]
2772
+ name = "windows-targets"
2773
+ version = "0.53.5"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2776
+ dependencies = [
2777
+ "windows-link",
2778
+ "windows_aarch64_gnullvm 0.53.1",
2779
+ "windows_aarch64_msvc 0.53.1",
2780
+ "windows_i686_gnu 0.53.1",
2781
+ "windows_i686_gnullvm 0.53.1",
2782
+ "windows_i686_msvc 0.53.1",
2783
+ "windows_x86_64_gnu 0.53.1",
2784
+ "windows_x86_64_gnullvm 0.53.1",
2785
+ "windows_x86_64_msvc 0.53.1",
2786
+ ]
2787
+
2788
+ [[package]]
2789
+ name = "windows-threading"
2790
+ version = "0.2.1"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
2793
+ dependencies = [
2794
+ "windows-link",
2795
+ ]
2796
+
2797
+ [[package]]
2798
+ name = "windows_aarch64_gnullvm"
2799
+ version = "0.52.6"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2802
+
2803
+ [[package]]
2804
+ name = "windows_aarch64_gnullvm"
2805
+ version = "0.53.1"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2808
+
2809
+ [[package]]
2810
+ name = "windows_aarch64_msvc"
2811
+ version = "0.52.6"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2814
+
2815
+ [[package]]
2816
+ name = "windows_aarch64_msvc"
2817
+ version = "0.53.1"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2820
+
2821
+ [[package]]
2822
+ name = "windows_i686_gnu"
2823
+ version = "0.52.6"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2826
+
2827
+ [[package]]
2828
+ name = "windows_i686_gnu"
2829
+ version = "0.53.1"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2832
+
2833
+ [[package]]
2834
+ name = "windows_i686_gnullvm"
2835
+ version = "0.52.6"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2838
+
2839
+ [[package]]
2840
+ name = "windows_i686_gnullvm"
2841
+ version = "0.53.1"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2844
+
2845
+ [[package]]
2846
+ name = "windows_i686_msvc"
2847
+ version = "0.52.6"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2850
+
2851
+ [[package]]
2852
+ name = "windows_i686_msvc"
2853
+ version = "0.53.1"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2856
+
2857
+ [[package]]
2858
+ name = "windows_x86_64_gnu"
2859
+ version = "0.52.6"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2862
+
2863
+ [[package]]
2864
+ name = "windows_x86_64_gnu"
2865
+ version = "0.53.1"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2868
+
2869
+ [[package]]
2870
+ name = "windows_x86_64_gnullvm"
2871
+ version = "0.52.6"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2874
+
2875
+ [[package]]
2876
+ name = "windows_x86_64_gnullvm"
2877
+ version = "0.53.1"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2880
+
2881
+ [[package]]
2882
+ name = "windows_x86_64_msvc"
2883
+ version = "0.52.6"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2886
+
2887
+ [[package]]
2888
+ name = "windows_x86_64_msvc"
2889
+ version = "0.53.1"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2892
+
2893
+ [[package]]
2894
+ name = "wit-bindgen"
2895
+ version = "0.51.0"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2898
+
2899
+ [[package]]
2900
+ name = "x509-parser"
2901
+ version = "0.18.1"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "d43b0f71ce057da06bc0851b23ee24f3f86190b07203dd8f567d0b706a185202"
2904
+ dependencies = [
2905
+ "asn1-rs",
2906
+ "aws-lc-rs",
2907
+ "data-encoding",
2908
+ "der-parser",
2909
+ "lazy_static",
2910
+ "nom",
2911
+ "oid-registry",
2912
+ "rusticata-macros",
2913
+ "thiserror",
2914
+ "time",
2915
+ ]
2916
+
2917
+ [[package]]
2918
+ name = "yasna"
2919
+ version = "0.5.2"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
2922
+ dependencies = [
2923
+ "time",
2924
+ ]
2925
+
2926
+ [[package]]
2927
+ name = "zerocopy"
2928
+ version = "0.8.40"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
2931
+ dependencies = [
2932
+ "zerocopy-derive",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "zerocopy-derive"
2937
+ version = "0.8.40"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
2940
+ dependencies = [
2941
+ "proc-macro2",
2942
+ "quote",
2943
+ "syn",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "zeroize"
2948
+ version = "1.8.2"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2951
+
2952
+ [[package]]
2953
+ name = "zmij"
2954
+ version = "1.0.21"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"