firm-client 0.1.2__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.
- firm_client-0.1.2/Cargo.lock +500 -0
- firm_client-0.1.2/Cargo.toml +6 -0
- firm_client-0.1.2/LICENSE +21 -0
- firm_client-0.1.2/PKG-INFO +190 -0
- firm_client-0.1.2/README.md +170 -0
- firm_client-0.1.2/firm_core/Cargo.toml +19 -0
- firm_client-0.1.2/firm_core/README.md +170 -0
- firm_client-0.1.2/firm_core/src/command_sender.rs +38 -0
- firm_client-0.1.2/firm_core/src/crc.rs +44 -0
- firm_client-0.1.2/firm_core/src/data_parser.rs +269 -0
- firm_client-0.1.2/firm_core/src/lib.rs +6 -0
- firm_client-0.1.2/firm_python/Cargo.toml +13 -0
- firm_client-0.1.2/firm_python/examples/run_parser.py +39 -0
- firm_client-0.1.2/firm_python/src/lib.rs +126 -0
- firm_client-0.1.2/firm_rust/Cargo.toml +14 -0
- firm_client-0.1.2/firm_rust/README.md +170 -0
- firm_client-0.1.2/firm_rust/examples/simple_reader.rs +37 -0
- firm_client-0.1.2/firm_rust/src/lib.rs +224 -0
- firm_client-0.1.2/pyproject.toml +48 -0
|
@@ -0,0 +1,500 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "anyhow"
|
|
7
|
+
version = "1.0.100"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "autocfg"
|
|
13
|
+
version = "1.5.0"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "bitflags"
|
|
19
|
+
version = "1.3.2"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "bitflags"
|
|
25
|
+
version = "2.10.0"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "bumpalo"
|
|
31
|
+
version = "3.19.0"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "cfg-if"
|
|
37
|
+
version = "1.0.4"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "core-foundation"
|
|
43
|
+
version = "0.10.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"core-foundation-sys",
|
|
48
|
+
"libc",
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[[package]]
|
|
52
|
+
name = "core-foundation-sys"
|
|
53
|
+
version = "0.8.7"
|
|
54
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
55
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "firm_core"
|
|
59
|
+
version = "0.1.0"
|
|
60
|
+
dependencies = [
|
|
61
|
+
"pyo3",
|
|
62
|
+
"serde",
|
|
63
|
+
"wasm-bindgen",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "firm_python"
|
|
68
|
+
version = "0.1.2"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"firm_core",
|
|
71
|
+
"firm_rust",
|
|
72
|
+
"pyo3",
|
|
73
|
+
]
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "firm_rust"
|
|
77
|
+
version = "0.1.0"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"anyhow",
|
|
80
|
+
"firm_core",
|
|
81
|
+
"serialport",
|
|
82
|
+
]
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "firm_wasm"
|
|
86
|
+
version = "0.1.0"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"firm_core",
|
|
89
|
+
"serde-wasm-bindgen",
|
|
90
|
+
"wasm-bindgen",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "heck"
|
|
95
|
+
version = "0.5.0"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "indoc"
|
|
101
|
+
version = "2.0.7"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"rustversion",
|
|
106
|
+
]
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "io-kit-sys"
|
|
110
|
+
version = "0.4.1"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "617ee6cf8e3f66f3b4ea67a4058564628cde41901316e19f559e14c7c72c5e7b"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"core-foundation-sys",
|
|
115
|
+
"mach2",
|
|
116
|
+
]
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "js-sys"
|
|
120
|
+
version = "0.3.83"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
123
|
+
dependencies = [
|
|
124
|
+
"once_cell",
|
|
125
|
+
"wasm-bindgen",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "libc"
|
|
130
|
+
version = "0.2.178"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "mach2"
|
|
136
|
+
version = "0.4.3"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
|
|
139
|
+
dependencies = [
|
|
140
|
+
"libc",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "memoffset"
|
|
145
|
+
version = "0.9.1"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"autocfg",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "nix"
|
|
154
|
+
version = "0.26.4"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"bitflags 1.3.2",
|
|
159
|
+
"cfg-if",
|
|
160
|
+
"libc",
|
|
161
|
+
]
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "once_cell"
|
|
165
|
+
version = "1.21.3"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "portable-atomic"
|
|
171
|
+
version = "1.11.1"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "proc-macro2"
|
|
177
|
+
version = "1.0.103"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
180
|
+
dependencies = [
|
|
181
|
+
"unicode-ident",
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "pyo3"
|
|
186
|
+
version = "0.27.2"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"indoc",
|
|
191
|
+
"libc",
|
|
192
|
+
"memoffset",
|
|
193
|
+
"once_cell",
|
|
194
|
+
"portable-atomic",
|
|
195
|
+
"pyo3-build-config",
|
|
196
|
+
"pyo3-ffi",
|
|
197
|
+
"pyo3-macros",
|
|
198
|
+
"unindent",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "pyo3-build-config"
|
|
203
|
+
version = "0.27.2"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"target-lexicon",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "pyo3-ffi"
|
|
212
|
+
version = "0.27.2"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
215
|
+
dependencies = [
|
|
216
|
+
"libc",
|
|
217
|
+
"pyo3-build-config",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "pyo3-macros"
|
|
222
|
+
version = "0.27.2"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"proc-macro2",
|
|
227
|
+
"pyo3-macros-backend",
|
|
228
|
+
"quote",
|
|
229
|
+
"syn",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "pyo3-macros-backend"
|
|
234
|
+
version = "0.27.2"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
237
|
+
dependencies = [
|
|
238
|
+
"heck",
|
|
239
|
+
"proc-macro2",
|
|
240
|
+
"pyo3-build-config",
|
|
241
|
+
"quote",
|
|
242
|
+
"syn",
|
|
243
|
+
]
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "quote"
|
|
247
|
+
version = "1.0.40"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"proc-macro2",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "rustversion"
|
|
256
|
+
version = "1.0.22"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "scopeguard"
|
|
262
|
+
version = "1.2.0"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "serde"
|
|
268
|
+
version = "1.0.228"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"serde_core",
|
|
273
|
+
"serde_derive",
|
|
274
|
+
]
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "serde-wasm-bindgen"
|
|
278
|
+
version = "0.6.5"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
281
|
+
dependencies = [
|
|
282
|
+
"js-sys",
|
|
283
|
+
"serde",
|
|
284
|
+
"wasm-bindgen",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "serde_core"
|
|
289
|
+
version = "1.0.228"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
292
|
+
dependencies = [
|
|
293
|
+
"serde_derive",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "serde_derive"
|
|
298
|
+
version = "1.0.228"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"proc-macro2",
|
|
303
|
+
"quote",
|
|
304
|
+
"syn",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "serialport"
|
|
309
|
+
version = "4.8.1"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "21f60a586160667241d7702c420fc223939fb3c0bb8d3fac84f78768e8970dee"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"bitflags 2.10.0",
|
|
314
|
+
"cfg-if",
|
|
315
|
+
"core-foundation",
|
|
316
|
+
"core-foundation-sys",
|
|
317
|
+
"io-kit-sys",
|
|
318
|
+
"mach2",
|
|
319
|
+
"nix",
|
|
320
|
+
"quote",
|
|
321
|
+
"scopeguard",
|
|
322
|
+
"unescaper",
|
|
323
|
+
"windows-sys",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "syn"
|
|
328
|
+
version = "2.0.111"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"proc-macro2",
|
|
333
|
+
"quote",
|
|
334
|
+
"unicode-ident",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "target-lexicon"
|
|
339
|
+
version = "0.13.3"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "thiserror"
|
|
345
|
+
version = "2.0.17"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"thiserror-impl",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "thiserror-impl"
|
|
354
|
+
version = "2.0.17"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"proc-macro2",
|
|
359
|
+
"quote",
|
|
360
|
+
"syn",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "unescaper"
|
|
365
|
+
version = "0.1.8"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "4064ed685c487dbc25bd3f0e9548f2e34bab9d18cefc700f9ec2dba74ba1138e"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"thiserror",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "unicode-ident"
|
|
374
|
+
version = "1.0.22"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "unindent"
|
|
380
|
+
version = "0.2.4"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "wasm-bindgen"
|
|
386
|
+
version = "0.2.106"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"cfg-if",
|
|
391
|
+
"once_cell",
|
|
392
|
+
"rustversion",
|
|
393
|
+
"wasm-bindgen-macro",
|
|
394
|
+
"wasm-bindgen-shared",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "wasm-bindgen-macro"
|
|
399
|
+
version = "0.2.106"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"quote",
|
|
404
|
+
"wasm-bindgen-macro-support",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "wasm-bindgen-macro-support"
|
|
409
|
+
version = "0.2.106"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"bumpalo",
|
|
414
|
+
"proc-macro2",
|
|
415
|
+
"quote",
|
|
416
|
+
"syn",
|
|
417
|
+
"wasm-bindgen-shared",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "wasm-bindgen-shared"
|
|
422
|
+
version = "0.2.106"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"unicode-ident",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "windows-sys"
|
|
431
|
+
version = "0.52.0"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"windows-targets",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "windows-targets"
|
|
440
|
+
version = "0.52.6"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"windows_aarch64_gnullvm",
|
|
445
|
+
"windows_aarch64_msvc",
|
|
446
|
+
"windows_i686_gnu",
|
|
447
|
+
"windows_i686_gnullvm",
|
|
448
|
+
"windows_i686_msvc",
|
|
449
|
+
"windows_x86_64_gnu",
|
|
450
|
+
"windows_x86_64_gnullvm",
|
|
451
|
+
"windows_x86_64_msvc",
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "windows_aarch64_gnullvm"
|
|
456
|
+
version = "0.52.6"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "windows_aarch64_msvc"
|
|
462
|
+
version = "0.52.6"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "windows_i686_gnu"
|
|
468
|
+
version = "0.52.6"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "windows_i686_gnullvm"
|
|
474
|
+
version = "0.52.6"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "windows_i686_msvc"
|
|
480
|
+
version = "0.52.6"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "windows_x86_64_gnu"
|
|
486
|
+
version = "0.52.6"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "windows_x86_64_gnullvm"
|
|
492
|
+
version = "0.52.6"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "windows_x86_64_msvc"
|
|
498
|
+
version = "0.52.6"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 NCSU High-Powered Rocketry Club
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|