mechanomeld 0.1.0
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 +7 -0
- data/CHANGELOG.md +21 -0
- data/Cargo.lock +617 -0
- data/Cargo.toml +3 -0
- data/README.md +68 -0
- data/Rakefile +26 -0
- data/checksums/mechanomeld-0.1.0.gem.sha512 +1 -0
- data/ext/mechanomeld/Cargo.toml +13 -0
- data/ext/mechanomeld/extconf.rb +6 -0
- data/ext/mechanomeld/src/classes.rs +24 -0
- data/ext/mechanomeld/src/document.rs +176 -0
- data/ext/mechanomeld/src/errors.rs +24 -0
- data/ext/mechanomeld/src/lib.rs +27 -0
- data/ext/mechanomeld/src/path.rs +117 -0
- data/ext/mechanomeld/src/read.rs +80 -0
- data/ext/mechanomeld/src/write.rs +142 -0
- data/lib/mechanomeld/document.rb +38 -0
- data/lib/mechanomeld/error.rb +5 -0
- data/lib/mechanomeld/scalars.rb +49 -0
- data/lib/mechanomeld/version.rb +5 -0
- data/lib/mechanomeld.rb +15 -0
- data/sig/mechanomeld.rbs +4 -0
- metadata +80 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: dc3b7a58de04a5445e59c398a68556fddb11bd3ec013451733e9a962e6121608
|
|
4
|
+
data.tar.gz: 29c2f1e1c0eb082b0416994131c78073e3a93c8ffdbe122e3af96887e3712bb2
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 16f9c6cd1505ce2931ac90f75ac9eb391eea8a2c7be2d7e6e6fcb513819e4c2eebfa849ce02cbcd96c8b833caab3d73d5eeb151e6087739d47aee5ab9e14c6aa
|
|
7
|
+
data.tar.gz: 3d0c3dbbbd11ae5733fcb260548c2aa2eb03ce399970eacffc8571fa111e014e6471618737704914c2162def47ec4c204b3ec4f62158ad1581751e86ad525f07
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
6
|
+
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
|
+
|
|
8
|
+
## [0.1.0] - 2026-09-17
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Initial release
|
|
13
|
+
- Mechanomeld::Counter, Timestamp, Uint, Bytes, and Text value classes (6df6951)
|
|
14
|
+
- Mechanomeld::Document.load reads documents saved by JavaScript Automerge (c7d31d8)
|
|
15
|
+
- Document#get, #[], and #to_h read values by path (c7d31d8)
|
|
16
|
+
- Document#keys and #length for maps, lists, and text (1d80c0b)
|
|
17
|
+
- Mechanomeld::Document.new(actor_id:) creates an empty document (bccb69c)
|
|
18
|
+
- Document#put, #[]=, #delete, and #save (bccb69c)
|
|
19
|
+
- Document#commit(message:, timestamp:) and #rollback (a8ef491)
|
|
20
|
+
- Document#change commits a block and rolls back if it raises (a8ef491)
|
|
21
|
+
- Mechanomeld::Document.from builds a committed document from a Hash (a8ef491)
|
data/Cargo.lock
ADDED
|
@@ -0,0 +1,617 @@
|
|
|
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.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "automerge"
|
|
16
|
+
version = "0.11.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "c1b59cbd9e7685a1ac6bf6046ddcd8acb550fa5bf03c09f6c1056728a742b40d"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"cfg-if",
|
|
21
|
+
"flate2",
|
|
22
|
+
"getrandom",
|
|
23
|
+
"hex",
|
|
24
|
+
"hexane",
|
|
25
|
+
"itertools 0.15.0",
|
|
26
|
+
"leb128",
|
|
27
|
+
"rand",
|
|
28
|
+
"rustc-hash",
|
|
29
|
+
"serde",
|
|
30
|
+
"sha2",
|
|
31
|
+
"smol_str",
|
|
32
|
+
"thiserror",
|
|
33
|
+
"tinyvec",
|
|
34
|
+
"tracing",
|
|
35
|
+
"unicode-segmentation",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bindgen"
|
|
40
|
+
version = "0.72.1"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"bitflags",
|
|
45
|
+
"cexpr",
|
|
46
|
+
"clang-sys",
|
|
47
|
+
"itertools 0.13.0",
|
|
48
|
+
"proc-macro2",
|
|
49
|
+
"quote",
|
|
50
|
+
"regex",
|
|
51
|
+
"rustc-hash",
|
|
52
|
+
"shlex",
|
|
53
|
+
"syn 2.0.119",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "bitflags"
|
|
58
|
+
version = "2.13.2"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "block-buffer"
|
|
64
|
+
version = "0.12.1"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"hybrid-array",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "borsh"
|
|
73
|
+
version = "1.8.1"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "553c5d846a6ba5150c65e3b1b8ec073bcf1abc20f9b7220de384a4443ea4e20a"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"bytes",
|
|
78
|
+
"cfg_aliases",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "bytes"
|
|
83
|
+
version = "1.12.1"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "cexpr"
|
|
89
|
+
version = "0.6.0"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"nom",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "cfg-if"
|
|
98
|
+
version = "1.0.4"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "cfg_aliases"
|
|
104
|
+
version = "0.2.2"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "chacha20"
|
|
110
|
+
version = "0.10.2"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"cfg-if",
|
|
115
|
+
"cpufeatures",
|
|
116
|
+
"rand_core",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "clang-sys"
|
|
121
|
+
version = "1.9.1"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"glob",
|
|
126
|
+
"libc",
|
|
127
|
+
"libloading",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "const-oid"
|
|
132
|
+
version = "0.10.2"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "cpufeatures"
|
|
138
|
+
version = "0.3.1"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"libc",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "crypto-common"
|
|
147
|
+
version = "0.2.2"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"hybrid-array",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "digest"
|
|
156
|
+
version = "0.11.3"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"block-buffer",
|
|
161
|
+
"const-oid",
|
|
162
|
+
"crypto-common",
|
|
163
|
+
]
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "either"
|
|
167
|
+
version = "1.18.0"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "flate2"
|
|
173
|
+
version = "1.1.10"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
176
|
+
dependencies = [
|
|
177
|
+
"zlib-rs",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "getrandom"
|
|
182
|
+
version = "0.4.3"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
185
|
+
dependencies = [
|
|
186
|
+
"cfg-if",
|
|
187
|
+
"libc",
|
|
188
|
+
"r-efi",
|
|
189
|
+
"rand_core",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "glob"
|
|
194
|
+
version = "0.3.4"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "hex"
|
|
200
|
+
version = "0.4.3"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "hexane"
|
|
206
|
+
version = "1.0.0-alpha.5"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "81df830f11babb0eee9a082e09135ef0a7d8791f3fe9b279bb9485bf7eaf23e0"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"leb128",
|
|
211
|
+
"thiserror",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "hybrid-array"
|
|
216
|
+
version = "0.4.15"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "27f864f10dfb56725ce5ce5472bc52252c8f93a4ab86327122cebf62c5f59a17"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"typenum",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "itertools"
|
|
225
|
+
version = "0.13.0"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"either",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "itertools"
|
|
234
|
+
version = "0.15.0"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
|
|
237
|
+
dependencies = [
|
|
238
|
+
"either",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "lazy_static"
|
|
243
|
+
version = "1.5.0"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "leb128"
|
|
249
|
+
version = "0.2.7"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "c83bff1d572d6b9aeef67ddfc8448e4a3737909cb28e81f97c791b9018703e52"
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "libc"
|
|
255
|
+
version = "0.2.189"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "libloading"
|
|
261
|
+
version = "0.8.9"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"cfg-if",
|
|
266
|
+
"windows-link",
|
|
267
|
+
]
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "magnus"
|
|
271
|
+
version = "0.8.2"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"magnus-macros",
|
|
276
|
+
"rb-sys",
|
|
277
|
+
"rb-sys-env",
|
|
278
|
+
"seq-macro",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "magnus-macros"
|
|
283
|
+
version = "0.8.0"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"proc-macro2",
|
|
288
|
+
"quote",
|
|
289
|
+
"syn 2.0.119",
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "mechanomeld"
|
|
294
|
+
version = "0.1.0"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"automerge",
|
|
297
|
+
"magnus",
|
|
298
|
+
"rb-sys",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "memchr"
|
|
303
|
+
version = "2.8.3"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "minimal-lexical"
|
|
309
|
+
version = "0.2.1"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "nom"
|
|
315
|
+
version = "7.1.3"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"memchr",
|
|
320
|
+
"minimal-lexical",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "once_cell"
|
|
325
|
+
version = "1.21.4"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "pin-project-lite"
|
|
331
|
+
version = "0.2.17"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "proc-macro2"
|
|
337
|
+
version = "1.0.107"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"unicode-ident",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "quote"
|
|
346
|
+
version = "1.0.47"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"proc-macro2",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "r-efi"
|
|
355
|
+
version = "6.0.0"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "rand"
|
|
361
|
+
version = "0.10.2"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"chacha20",
|
|
366
|
+
"getrandom",
|
|
367
|
+
"rand_core",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "rand_core"
|
|
372
|
+
version = "0.10.1"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "rb-sys"
|
|
378
|
+
version = "0.9.130"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "02faf625bb10ba893e3ae620f19c9fb1b5f8fcae0fe4eb86bb3f2230fad75edb"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"rb-sys-build",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "rb-sys-build"
|
|
387
|
+
version = "0.9.130"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "05be6f9c86fe5482808162826f6c047d093b3670582296c770de1d94f8066694"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"bindgen",
|
|
392
|
+
"lazy_static",
|
|
393
|
+
"proc-macro2",
|
|
394
|
+
"quote",
|
|
395
|
+
"regex",
|
|
396
|
+
"shell-words",
|
|
397
|
+
"syn 2.0.119",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "rb-sys-env"
|
|
402
|
+
version = "0.2.3"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "regex"
|
|
408
|
+
version = "1.13.1"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"aho-corasick",
|
|
413
|
+
"memchr",
|
|
414
|
+
"regex-automata",
|
|
415
|
+
"regex-syntax",
|
|
416
|
+
]
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "regex-automata"
|
|
420
|
+
version = "0.4.18"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"aho-corasick",
|
|
425
|
+
"memchr",
|
|
426
|
+
"regex-syntax",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "regex-syntax"
|
|
431
|
+
version = "0.8.11"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "rustc-hash"
|
|
437
|
+
version = "2.1.3"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "seq-macro"
|
|
443
|
+
version = "0.3.6"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "serde"
|
|
449
|
+
version = "1.0.229"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"serde_core",
|
|
454
|
+
"serde_derive",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "serde_core"
|
|
459
|
+
version = "1.0.229"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"serde_derive",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "serde_derive"
|
|
468
|
+
version = "1.0.229"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"proc-macro2",
|
|
473
|
+
"quote",
|
|
474
|
+
"syn 3.0.5",
|
|
475
|
+
]
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "sha2"
|
|
479
|
+
version = "0.11.0"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"cfg-if",
|
|
484
|
+
"cpufeatures",
|
|
485
|
+
"digest",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "shell-words"
|
|
490
|
+
version = "1.1.1"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "shlex"
|
|
496
|
+
version = "1.3.0"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "smol_str"
|
|
502
|
+
version = "0.3.6"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "4aaa7368fcf4852a4c2dd92df0cace6a71f2091ca0a23391ce7f3a31833f1523"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"borsh",
|
|
507
|
+
"serde_core",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "syn"
|
|
512
|
+
version = "2.0.119"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"proc-macro2",
|
|
517
|
+
"quote",
|
|
518
|
+
"unicode-ident",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "syn"
|
|
523
|
+
version = "3.0.5"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"proc-macro2",
|
|
528
|
+
"quote",
|
|
529
|
+
"unicode-ident",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "thiserror"
|
|
534
|
+
version = "2.0.20"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"thiserror-impl",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "thiserror-impl"
|
|
543
|
+
version = "2.0.20"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"proc-macro2",
|
|
548
|
+
"quote",
|
|
549
|
+
"syn 3.0.5",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "tinyvec"
|
|
554
|
+
version = "1.13.3"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "fd3ca314f692efd6c868f8408f53fe444634a845f96c028b97d35f6a1f79f0ee"
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "tracing"
|
|
560
|
+
version = "0.1.44"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"pin-project-lite",
|
|
565
|
+
"tracing-attributes",
|
|
566
|
+
"tracing-core",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "tracing-attributes"
|
|
571
|
+
version = "0.1.31"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"proc-macro2",
|
|
576
|
+
"quote",
|
|
577
|
+
"syn 2.0.119",
|
|
578
|
+
]
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "tracing-core"
|
|
582
|
+
version = "0.1.36"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
585
|
+
dependencies = [
|
|
586
|
+
"once_cell",
|
|
587
|
+
]
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "typenum"
|
|
591
|
+
version = "1.20.1"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "unicode-ident"
|
|
597
|
+
version = "1.0.24"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "unicode-segmentation"
|
|
603
|
+
version = "1.13.3"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "windows-link"
|
|
609
|
+
version = "0.2.1"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "zlib-rs"
|
|
615
|
+
version = "0.6.8"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "b268e58e7c693d7c271f93ffc4ba3b380412554231c85bf61ca7af91042a4112"
|
data/Cargo.toml
ADDED