chrono_machines 0.5.0 → 0.5.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/Cargo.lock +679 -0
- data/Cargo.toml +7 -0
- data/lib/chrono_machines/version.rb +1 -1
- metadata +4 -20
- data/ext/chrono_machines_native/target/debug/build/clang-sys-414c893ed9493fe4/out/common.rs +0 -355
- data/ext/chrono_machines_native/target/debug/build/clang-sys-414c893ed9493fe4/out/dynamic.rs +0 -276
- data/ext/chrono_machines_native/target/debug/build/clang-sys-414c893ed9493fe4/out/macros.rs +0 -49
- data/ext/chrono_machines_native/target/debug/build/clang-sys-b1d0ba329a011cdd/out/common.rs +0 -355
- data/ext/chrono_machines_native/target/debug/build/clang-sys-b1d0ba329a011cdd/out/dynamic.rs +0 -276
- data/ext/chrono_machines_native/target/debug/build/clang-sys-b1d0ba329a011cdd/out/macros.rs +0 -49
- data/ext/chrono_machines_native/target/debug/build/rb-sys-7d416123f8551038/out/bindings-0.9.124-mri-arm64-darwin23-4.0.3.rs +0 -9057
- data/ext/chrono_machines_native/target/debug/build/rb-sys-848783778984ec5d/out/bindings-0.9.124-mri-arm64-darwin23-3.4.8.rs +0 -8933
- data/ext/chrono_machines_native/target/debug/build/rb-sys-ce17442a66050c01/out/bindings-0.9.128-mri-arm64-darwin23-3.4.8.rs +0 -8933
- data/ext/chrono_machines_native/target/package/chrono-machines-0.3.2/Cargo.toml +0 -76
- data/ext/chrono_machines_native/target/package/chrono-machines-0.3.2/src/backoff.rs +0 -497
- data/ext/chrono_machines_native/target/package/chrono-machines-0.3.2/src/dsl.rs +0 -108
- data/ext/chrono_machines_native/target/package/chrono-machines-0.3.2/src/lib.rs +0 -352
- data/ext/chrono_machines_native/target/package/chrono-machines-0.3.2/src/policy.rs +0 -189
- data/ext/chrono_machines_native/target/package/chrono-machines-0.3.2/src/retry.rs +0 -1489
- data/ext/chrono_machines_native/target/package/chrono-machines-0.3.2/src/sleep.rs +0 -97
- data/ext/chrono_machines_native/target/package/chrono_machines_native-0.2.3/Cargo.toml +0 -56
- data/ext/chrono_machines_native/target/package/chrono_machines_native-0.2.3/src/lib.rs +0 -192
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb4f1620c4d7127ade4674da9654950e2825450ddbc9d18d98769a601b32de15
|
|
4
|
+
data.tar.gz: 16b72772ad691fa533a2f8bcac24fed4ae3e82260fefbbdae0524a572ecc6268
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3bd364afd8eb6985f4403ee82fe3c64154e7cdfc16015baafb7266525aa3029275d73a6406996f0255cc8efbb90712b21bea0a43dd92704a74c7b4f2973c6ec4
|
|
7
|
+
data.tar.gz: 22df546a627583ad205bb2fb4f4296bed2fea71428cacc01801031d3e3b56da03376f5fcfcd56f7abd1d54b5e39dac0f190ac76b45cf530457140036eac9a935
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.5.1](https://github.com/seuros/chrono_machines/compare/chrono_machines/v0.5.0...chrono_machines/v0.5.1) (2026-08-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* package workspace Cargo manifest so source builds work ([#17](https://github.com/seuros/chrono_machines/issues/17)) ([ac0ddad](https://github.com/seuros/chrono_machines/commit/ac0ddad15d26528771825240a05ed8c84fb61520))
|
|
9
|
+
|
|
3
10
|
## [0.5.0](https://github.com/seuros/chrono_machines/compare/chrono_machines/v0.4.4...chrono_machines/v0.5.0) (2026-06-24)
|
|
4
11
|
|
|
5
12
|
|
data/Cargo.lock
ADDED
|
@@ -0,0 +1,679 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anyhow"
|
|
16
|
+
version = "1.0.102"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "async-trait"
|
|
22
|
+
version = "0.1.89"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"proc-macro2",
|
|
27
|
+
"quote",
|
|
28
|
+
"syn",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "bindgen"
|
|
33
|
+
version = "0.72.1"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"bitflags",
|
|
38
|
+
"cexpr",
|
|
39
|
+
"clang-sys",
|
|
40
|
+
"itertools",
|
|
41
|
+
"proc-macro2",
|
|
42
|
+
"quote",
|
|
43
|
+
"regex",
|
|
44
|
+
"rustc-hash",
|
|
45
|
+
"shlex",
|
|
46
|
+
"syn",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "bitflags"
|
|
51
|
+
version = "2.13.0"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "cexpr"
|
|
57
|
+
version = "0.6.0"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
60
|
+
dependencies = [
|
|
61
|
+
"nom",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "cfg-if"
|
|
66
|
+
version = "1.0.4"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "chacha20"
|
|
72
|
+
version = "0.10.0"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"cfg-if",
|
|
77
|
+
"cpufeatures",
|
|
78
|
+
"rand_core",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "chrono-machines"
|
|
83
|
+
version = "0.3.2"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"async-trait",
|
|
86
|
+
"rand",
|
|
87
|
+
"tokio",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "chrono_machines_native"
|
|
92
|
+
version = "0.2.3"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"chrono-machines",
|
|
95
|
+
"magnus",
|
|
96
|
+
"rand",
|
|
97
|
+
"rb-sys",
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "clang-sys"
|
|
102
|
+
version = "1.8.1"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"glob",
|
|
107
|
+
"libc",
|
|
108
|
+
"libloading",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "cpufeatures"
|
|
113
|
+
version = "0.3.0"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"libc",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "either"
|
|
122
|
+
version = "1.16.0"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "equivalent"
|
|
128
|
+
version = "1.0.2"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "foldhash"
|
|
134
|
+
version = "0.1.5"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "getrandom"
|
|
140
|
+
version = "0.4.2"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"cfg-if",
|
|
145
|
+
"libc",
|
|
146
|
+
"r-efi",
|
|
147
|
+
"rand_core",
|
|
148
|
+
"wasip2",
|
|
149
|
+
"wasip3",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "glob"
|
|
154
|
+
version = "0.3.3"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "hashbrown"
|
|
160
|
+
version = "0.15.5"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
163
|
+
dependencies = [
|
|
164
|
+
"foldhash",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "hashbrown"
|
|
169
|
+
version = "0.17.1"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "heck"
|
|
175
|
+
version = "0.5.0"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "id-arena"
|
|
181
|
+
version = "2.3.0"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "indexmap"
|
|
187
|
+
version = "2.14.0"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"equivalent",
|
|
192
|
+
"hashbrown 0.17.1",
|
|
193
|
+
"serde",
|
|
194
|
+
"serde_core",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "itertools"
|
|
199
|
+
version = "0.13.0"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"either",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "itoa"
|
|
208
|
+
version = "1.0.18"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "lazy_static"
|
|
214
|
+
version = "1.5.0"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "leb128fmt"
|
|
220
|
+
version = "0.1.0"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "libc"
|
|
226
|
+
version = "0.2.186"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "libloading"
|
|
232
|
+
version = "0.8.9"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"cfg-if",
|
|
237
|
+
"windows-link",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "log"
|
|
242
|
+
version = "0.4.32"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "magnus"
|
|
248
|
+
version = "0.8.2"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"magnus-macros",
|
|
253
|
+
"rb-sys",
|
|
254
|
+
"rb-sys-env",
|
|
255
|
+
"seq-macro",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "magnus-macros"
|
|
260
|
+
version = "0.8.0"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
263
|
+
dependencies = [
|
|
264
|
+
"proc-macro2",
|
|
265
|
+
"quote",
|
|
266
|
+
"syn",
|
|
267
|
+
]
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "memchr"
|
|
271
|
+
version = "2.8.2"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "minimal-lexical"
|
|
277
|
+
version = "0.2.1"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "nom"
|
|
283
|
+
version = "7.1.3"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"memchr",
|
|
288
|
+
"minimal-lexical",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "pin-project-lite"
|
|
293
|
+
version = "0.2.17"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "prettyplease"
|
|
299
|
+
version = "0.2.37"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"proc-macro2",
|
|
304
|
+
"syn",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "proc-macro2"
|
|
309
|
+
version = "1.0.106"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"unicode-ident",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "quote"
|
|
318
|
+
version = "1.0.45"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"proc-macro2",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "r-efi"
|
|
327
|
+
version = "6.0.0"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "rand"
|
|
333
|
+
version = "0.10.1"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"chacha20",
|
|
338
|
+
"getrandom",
|
|
339
|
+
"rand_core",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "rand_core"
|
|
344
|
+
version = "0.10.1"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "rb-sys"
|
|
350
|
+
version = "0.9.128"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"rb-sys-build",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "rb-sys-build"
|
|
359
|
+
version = "0.9.128"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"bindgen",
|
|
364
|
+
"lazy_static",
|
|
365
|
+
"proc-macro2",
|
|
366
|
+
"quote",
|
|
367
|
+
"regex",
|
|
368
|
+
"shell-words",
|
|
369
|
+
"syn",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "rb-sys-env"
|
|
374
|
+
version = "0.2.3"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "regex"
|
|
380
|
+
version = "1.12.4"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"aho-corasick",
|
|
385
|
+
"memchr",
|
|
386
|
+
"regex-automata",
|
|
387
|
+
"regex-syntax",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "regex-automata"
|
|
392
|
+
version = "0.4.14"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"aho-corasick",
|
|
397
|
+
"memchr",
|
|
398
|
+
"regex-syntax",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "regex-syntax"
|
|
403
|
+
version = "0.8.11"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "rustc-hash"
|
|
409
|
+
version = "2.1.2"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "semver"
|
|
415
|
+
version = "1.0.28"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "seq-macro"
|
|
421
|
+
version = "0.3.6"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "serde"
|
|
427
|
+
version = "1.0.228"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"serde_core",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "serde_core"
|
|
436
|
+
version = "1.0.228"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"serde_derive",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "serde_derive"
|
|
445
|
+
version = "1.0.228"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"proc-macro2",
|
|
450
|
+
"quote",
|
|
451
|
+
"syn",
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "serde_json"
|
|
456
|
+
version = "1.0.150"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"itoa",
|
|
461
|
+
"memchr",
|
|
462
|
+
"serde",
|
|
463
|
+
"serde_core",
|
|
464
|
+
"zmij",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "shell-words"
|
|
469
|
+
version = "1.1.1"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "shlex"
|
|
475
|
+
version = "1.3.0"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "syn"
|
|
481
|
+
version = "2.0.117"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"proc-macro2",
|
|
486
|
+
"quote",
|
|
487
|
+
"unicode-ident",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "tokio"
|
|
492
|
+
version = "1.52.3"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"pin-project-lite",
|
|
497
|
+
"tokio-macros",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "tokio-macros"
|
|
502
|
+
version = "2.7.0"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"proc-macro2",
|
|
507
|
+
"quote",
|
|
508
|
+
"syn",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "unicode-ident"
|
|
513
|
+
version = "1.0.24"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "unicode-xid"
|
|
519
|
+
version = "0.2.6"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "wasip2"
|
|
525
|
+
version = "1.0.4+wasi-0.2.12"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
528
|
+
dependencies = [
|
|
529
|
+
"wit-bindgen 0.57.1",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "wasip3"
|
|
534
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"wit-bindgen 0.51.0",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "wasm-encoder"
|
|
543
|
+
version = "0.244.0"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"leb128fmt",
|
|
548
|
+
"wasmparser",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "wasm-metadata"
|
|
553
|
+
version = "0.244.0"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"anyhow",
|
|
558
|
+
"indexmap",
|
|
559
|
+
"wasm-encoder",
|
|
560
|
+
"wasmparser",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "wasmparser"
|
|
565
|
+
version = "0.244.0"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"bitflags",
|
|
570
|
+
"hashbrown 0.15.5",
|
|
571
|
+
"indexmap",
|
|
572
|
+
"semver",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "windows-link"
|
|
577
|
+
version = "0.2.1"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "wit-bindgen"
|
|
583
|
+
version = "0.51.0"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"wit-bindgen-rust-macro",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "wit-bindgen"
|
|
592
|
+
version = "0.57.1"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "wit-bindgen-core"
|
|
598
|
+
version = "0.51.0"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"anyhow",
|
|
603
|
+
"heck",
|
|
604
|
+
"wit-parser",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "wit-bindgen-rust"
|
|
609
|
+
version = "0.51.0"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"anyhow",
|
|
614
|
+
"heck",
|
|
615
|
+
"indexmap",
|
|
616
|
+
"prettyplease",
|
|
617
|
+
"syn",
|
|
618
|
+
"wasm-metadata",
|
|
619
|
+
"wit-bindgen-core",
|
|
620
|
+
"wit-component",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "wit-bindgen-rust-macro"
|
|
625
|
+
version = "0.51.0"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"anyhow",
|
|
630
|
+
"prettyplease",
|
|
631
|
+
"proc-macro2",
|
|
632
|
+
"quote",
|
|
633
|
+
"syn",
|
|
634
|
+
"wit-bindgen-core",
|
|
635
|
+
"wit-bindgen-rust",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "wit-component"
|
|
640
|
+
version = "0.244.0"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"anyhow",
|
|
645
|
+
"bitflags",
|
|
646
|
+
"indexmap",
|
|
647
|
+
"log",
|
|
648
|
+
"serde",
|
|
649
|
+
"serde_derive",
|
|
650
|
+
"serde_json",
|
|
651
|
+
"wasm-encoder",
|
|
652
|
+
"wasm-metadata",
|
|
653
|
+
"wasmparser",
|
|
654
|
+
"wit-parser",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "wit-parser"
|
|
659
|
+
version = "0.244.0"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"anyhow",
|
|
664
|
+
"id-arena",
|
|
665
|
+
"indexmap",
|
|
666
|
+
"log",
|
|
667
|
+
"semver",
|
|
668
|
+
"serde",
|
|
669
|
+
"serde_derive",
|
|
670
|
+
"serde_json",
|
|
671
|
+
"unicode-xid",
|
|
672
|
+
"wasmparser",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "zmij"
|
|
677
|
+
version = "1.0.21"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
data/Cargo.toml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[workspace]
|
|
2
|
+
members = ["ext/chrono_machines_native/core", "ext/chrono_machines_native/ffi"]
|
|
3
|
+
resolver = "2"
|
|
4
|
+
|
|
5
|
+
[workspace.dependencies]
|
|
6
|
+
chrono-machines = { path = "ext/chrono_machines_native/core" }
|
|
7
|
+
rand = { version = "0.10", default-features = false, features = ["std_rng", "sys_rng"] }
|