tide-prediction 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tide_prediction-0.1.0/Cargo.lock +698 -0
- tide_prediction-0.1.0/Cargo.toml +3 -0
- tide_prediction-0.1.0/PKG-INFO +131 -0
- tide_prediction-0.1.0/README.md +117 -0
- tide_prediction-0.1.0/pyproject.toml +24 -0
- tide_prediction-0.1.0/tide-core/Cargo.toml +12 -0
- tide_prediction-0.1.0/tide-core/data/ports.json +1270 -0
- tide_prediction-0.1.0/tide-core/src/api.rs +195 -0
- tide_prediction-0.1.0/tide-core/src/astronomical/arguments.rs +70 -0
- tide_prediction-0.1.0/tide-core/src/astronomical/constituents.rs +131 -0
- tide_prediction-0.1.0/tide-core/src/astronomical/mod.rs +7 -0
- tide_prediction-0.1.0/tide-core/src/astronomical/nodal.rs +132 -0
- tide_prediction-0.1.0/tide-core/src/coefficient.rs +99 -0
- tide_prediction-0.1.0/tide-core/src/db.rs +45 -0
- tide_prediction-0.1.0/tide-core/src/harmonic/engine.rs +110 -0
- tide_prediction-0.1.0/tide-core/src/harmonic/extremes.rs +136 -0
- tide_prediction-0.1.0/tide-core/src/harmonic/mod.rs +4 -0
- tide_prediction-0.1.0/tide-core/src/lib.rs +10 -0
- tide_prediction-0.1.0/tide-core/src/ports/mod.rs +40 -0
- tide_prediction-0.1.0/tide-core/src/ports/search.rs +96 -0
- tide_prediction-0.1.0/tide-uniffi/Cargo.toml +18 -0
- tide_prediction-0.1.0/tide-uniffi/build.rs +5 -0
- tide_prediction-0.1.0/tide-uniffi/src/bin/uniffi-bindgen.rs +3 -0
- tide_prediction-0.1.0/tide-uniffi/src/lib.rs +135 -0
- tide_prediction-0.1.0/tide-uniffi/src/tide.udl +56 -0
|
@@ -0,0 +1,698 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "anstream"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"anstyle",
|
|
12
|
+
"anstyle-parse",
|
|
13
|
+
"anstyle-query",
|
|
14
|
+
"anstyle-wincon",
|
|
15
|
+
"colorchoice",
|
|
16
|
+
"is_terminal_polyfill",
|
|
17
|
+
"utf8parse",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.14"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle-parse"
|
|
28
|
+
version = "1.0.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle-query"
|
|
37
|
+
version = "1.1.5"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"windows-sys",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle-wincon"
|
|
46
|
+
version = "3.0.11"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"anstyle",
|
|
51
|
+
"once_cell_polyfill",
|
|
52
|
+
"windows-sys",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "anyhow"
|
|
57
|
+
version = "1.0.102"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "approx"
|
|
63
|
+
version = "0.5.1"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"num-traits",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "askama"
|
|
72
|
+
version = "0.12.1"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"askama_derive",
|
|
77
|
+
"askama_escape",
|
|
78
|
+
]
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "askama_derive"
|
|
82
|
+
version = "0.12.5"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83"
|
|
85
|
+
dependencies = [
|
|
86
|
+
"askama_parser",
|
|
87
|
+
"basic-toml",
|
|
88
|
+
"mime",
|
|
89
|
+
"mime_guess",
|
|
90
|
+
"proc-macro2",
|
|
91
|
+
"quote",
|
|
92
|
+
"serde",
|
|
93
|
+
"syn",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "askama_escape"
|
|
98
|
+
version = "0.10.3"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "askama_parser"
|
|
104
|
+
version = "0.2.1"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0"
|
|
107
|
+
dependencies = [
|
|
108
|
+
"nom",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "autocfg"
|
|
113
|
+
version = "1.5.0"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "basic-toml"
|
|
119
|
+
version = "0.1.10"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"serde",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "bincode"
|
|
128
|
+
version = "1.3.3"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"serde",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "bytes"
|
|
137
|
+
version = "1.11.1"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "camino"
|
|
143
|
+
version = "1.2.2"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"serde_core",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "cargo-platform"
|
|
152
|
+
version = "0.1.9"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"serde",
|
|
157
|
+
]
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "cargo_metadata"
|
|
161
|
+
version = "0.15.4"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
|
|
164
|
+
dependencies = [
|
|
165
|
+
"camino",
|
|
166
|
+
"cargo-platform",
|
|
167
|
+
"semver",
|
|
168
|
+
"serde",
|
|
169
|
+
"serde_json",
|
|
170
|
+
"thiserror",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "clap"
|
|
175
|
+
version = "4.6.0"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"clap_builder",
|
|
180
|
+
"clap_derive",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "clap_builder"
|
|
185
|
+
version = "4.6.0"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"anstream",
|
|
190
|
+
"anstyle",
|
|
191
|
+
"clap_lex",
|
|
192
|
+
"strsim",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "clap_derive"
|
|
197
|
+
version = "4.6.0"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"heck",
|
|
202
|
+
"proc-macro2",
|
|
203
|
+
"quote",
|
|
204
|
+
"syn",
|
|
205
|
+
]
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "clap_lex"
|
|
209
|
+
version = "1.1.0"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "colorchoice"
|
|
215
|
+
version = "1.0.5"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "fs-err"
|
|
221
|
+
version = "2.11.0"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"autocfg",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "glob"
|
|
230
|
+
version = "0.3.3"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "goblin"
|
|
236
|
+
version = "0.8.2"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"log",
|
|
241
|
+
"plain",
|
|
242
|
+
"scroll",
|
|
243
|
+
]
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "heck"
|
|
247
|
+
version = "0.5.0"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "is_terminal_polyfill"
|
|
253
|
+
version = "1.70.2"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "itoa"
|
|
259
|
+
version = "1.0.18"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "log"
|
|
265
|
+
version = "0.4.29"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "memchr"
|
|
271
|
+
version = "2.8.0"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "mime"
|
|
277
|
+
version = "0.3.17"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "mime_guess"
|
|
283
|
+
version = "2.0.5"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"mime",
|
|
288
|
+
"unicase",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "minimal-lexical"
|
|
293
|
+
version = "0.2.1"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "nom"
|
|
299
|
+
version = "7.1.3"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"memchr",
|
|
304
|
+
"minimal-lexical",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "num-traits"
|
|
309
|
+
version = "0.2.19"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"autocfg",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "once_cell"
|
|
318
|
+
version = "1.21.4"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "once_cell_polyfill"
|
|
324
|
+
version = "1.70.2"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "paste"
|
|
330
|
+
version = "1.0.15"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "plain"
|
|
336
|
+
version = "0.2.3"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "proc-macro2"
|
|
342
|
+
version = "1.0.106"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"unicode-ident",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "quote"
|
|
351
|
+
version = "1.0.45"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"proc-macro2",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "scroll"
|
|
360
|
+
version = "0.12.0"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"scroll_derive",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "scroll_derive"
|
|
369
|
+
version = "0.12.1"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"proc-macro2",
|
|
374
|
+
"quote",
|
|
375
|
+
"syn",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "semver"
|
|
380
|
+
version = "1.0.27"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"serde",
|
|
385
|
+
"serde_core",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "serde"
|
|
390
|
+
version = "1.0.228"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"serde_core",
|
|
395
|
+
"serde_derive",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "serde_core"
|
|
400
|
+
version = "1.0.228"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"serde_derive",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "serde_derive"
|
|
409
|
+
version = "1.0.228"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"proc-macro2",
|
|
414
|
+
"quote",
|
|
415
|
+
"syn",
|
|
416
|
+
]
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "serde_json"
|
|
420
|
+
version = "1.0.149"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"itoa",
|
|
425
|
+
"memchr",
|
|
426
|
+
"serde",
|
|
427
|
+
"serde_core",
|
|
428
|
+
"zmij",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "siphasher"
|
|
433
|
+
version = "0.3.11"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "smawk"
|
|
439
|
+
version = "0.3.2"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "static_assertions"
|
|
445
|
+
version = "1.1.0"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "strsim"
|
|
451
|
+
version = "0.11.1"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "syn"
|
|
457
|
+
version = "2.0.117"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"proc-macro2",
|
|
462
|
+
"quote",
|
|
463
|
+
"unicode-ident",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "textwrap"
|
|
468
|
+
version = "0.16.2"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"smawk",
|
|
473
|
+
]
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "thiserror"
|
|
477
|
+
version = "1.0.69"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
480
|
+
dependencies = [
|
|
481
|
+
"thiserror-impl",
|
|
482
|
+
]
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "thiserror-impl"
|
|
486
|
+
version = "1.0.69"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"proc-macro2",
|
|
491
|
+
"quote",
|
|
492
|
+
"syn",
|
|
493
|
+
]
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "tide-core"
|
|
497
|
+
version = "0.1.0"
|
|
498
|
+
dependencies = [
|
|
499
|
+
"approx",
|
|
500
|
+
"once_cell",
|
|
501
|
+
"serde",
|
|
502
|
+
"serde_json",
|
|
503
|
+
]
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "tide-uniffi"
|
|
507
|
+
version = "0.1.0"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"tide-core",
|
|
510
|
+
"uniffi",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "toml"
|
|
515
|
+
version = "0.5.11"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"serde",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "unicase"
|
|
524
|
+
version = "2.9.0"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "unicode-ident"
|
|
530
|
+
version = "1.0.24"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "uniffi"
|
|
536
|
+
version = "0.28.3"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "4cb08c58c7ed7033150132febe696bef553f891b1ede57424b40d87a89e3c170"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"anyhow",
|
|
541
|
+
"camino",
|
|
542
|
+
"cargo_metadata",
|
|
543
|
+
"clap",
|
|
544
|
+
"uniffi_bindgen",
|
|
545
|
+
"uniffi_build",
|
|
546
|
+
"uniffi_core",
|
|
547
|
+
"uniffi_macros",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "uniffi_bindgen"
|
|
552
|
+
version = "0.28.3"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "cade167af943e189a55020eda2c314681e223f1e42aca7c4e52614c2b627698f"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"anyhow",
|
|
557
|
+
"askama",
|
|
558
|
+
"camino",
|
|
559
|
+
"cargo_metadata",
|
|
560
|
+
"fs-err",
|
|
561
|
+
"glob",
|
|
562
|
+
"goblin",
|
|
563
|
+
"heck",
|
|
564
|
+
"once_cell",
|
|
565
|
+
"paste",
|
|
566
|
+
"serde",
|
|
567
|
+
"textwrap",
|
|
568
|
+
"toml",
|
|
569
|
+
"uniffi_meta",
|
|
570
|
+
"uniffi_udl",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "uniffi_build"
|
|
575
|
+
version = "0.28.3"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "4c7cf32576e08104b7dc2a6a5d815f37616e66c6866c2a639fe16e6d2286b75b"
|
|
578
|
+
dependencies = [
|
|
579
|
+
"anyhow",
|
|
580
|
+
"camino",
|
|
581
|
+
"uniffi_bindgen",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "uniffi_checksum_derive"
|
|
586
|
+
version = "0.28.3"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "802d2051a700e3ec894c79f80d2705b69d85844dafbbe5d1a92776f8f48b563a"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"quote",
|
|
591
|
+
"syn",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "uniffi_core"
|
|
596
|
+
version = "0.28.3"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "bc7687007d2546c454d8ae609b105daceb88175477dac280707ad6d95bcd6f1f"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"anyhow",
|
|
601
|
+
"bytes",
|
|
602
|
+
"log",
|
|
603
|
+
"once_cell",
|
|
604
|
+
"paste",
|
|
605
|
+
"static_assertions",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "uniffi_macros"
|
|
610
|
+
version = "0.28.3"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "12c65a5b12ec544ef136693af8759fb9d11aefce740fb76916721e876639033b"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"bincode",
|
|
615
|
+
"camino",
|
|
616
|
+
"fs-err",
|
|
617
|
+
"once_cell",
|
|
618
|
+
"proc-macro2",
|
|
619
|
+
"quote",
|
|
620
|
+
"serde",
|
|
621
|
+
"syn",
|
|
622
|
+
"toml",
|
|
623
|
+
"uniffi_meta",
|
|
624
|
+
]
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "uniffi_meta"
|
|
628
|
+
version = "0.28.3"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "4a74ed96c26882dac1ca9b93ca23c827e284bacbd7ec23c6f0b0372f747d59e4"
|
|
631
|
+
dependencies = [
|
|
632
|
+
"anyhow",
|
|
633
|
+
"bytes",
|
|
634
|
+
"siphasher",
|
|
635
|
+
"uniffi_checksum_derive",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "uniffi_testing"
|
|
640
|
+
version = "0.28.3"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "6a6f984f0781f892cc864a62c3a5c60361b1ccbd68e538e6c9fbced5d82268ac"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"anyhow",
|
|
645
|
+
"camino",
|
|
646
|
+
"cargo_metadata",
|
|
647
|
+
"fs-err",
|
|
648
|
+
"once_cell",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "uniffi_udl"
|
|
653
|
+
version = "0.28.3"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "037820a4cfc4422db1eaa82f291a3863c92c7d1789dc513489c36223f9b4cdfc"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"anyhow",
|
|
658
|
+
"textwrap",
|
|
659
|
+
"uniffi_meta",
|
|
660
|
+
"uniffi_testing",
|
|
661
|
+
"weedle2",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "utf8parse"
|
|
666
|
+
version = "0.2.2"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "weedle2"
|
|
672
|
+
version = "5.0.0"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "998d2c24ec099a87daf9467808859f9d82b61f1d9c9701251aea037f514eae0e"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"nom",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "windows-link"
|
|
681
|
+
version = "0.2.1"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "windows-sys"
|
|
687
|
+
version = "0.61.2"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
690
|
+
dependencies = [
|
|
691
|
+
"windows-link",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "zmij"
|
|
696
|
+
version = "1.0.21"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|