blake3ruby 0.1.0 → 0.1.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/Cargo.lock +129 -117
- data/Gemfile.lock +34 -28
- data/README.md +0 -2
- data/blake3ruby.gemspec +33 -0
- data/ext/blake3ruby/Cargo.toml +6 -3
- data/lib/blake3ruby/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b557aeaacfec5d4f45874dd7549de7a5ccf6b549738636e7288353451feaf9f7
|
4
|
+
data.tar.gz: 685492fae6050a4c0742a6cd56d66b88e1b6a9f7698a739c77bee387193574fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31514a49570361b158dece950616e4c4b3f3ff24fdfb83e46585009366a2cbb732c12638b1bbd193309723a6899c4e37a610c52efc4b5f949082472a72537ae2
|
7
|
+
data.tar.gz: 4815f135a982a0e747ffb020d44252c2162d2f6c19c27d8bd34af007959f3c686151afee98e810bb34ab60b31dc66e11c6085af08b9bcb0a78086b4d100c8ca4
|
data/Cargo.lock
CHANGED
@@ -4,9 +4,9 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "aho-corasick"
|
7
|
-
version = "
|
7
|
+
version = "1.1.3"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
10
10
|
dependencies = [
|
11
11
|
"memchr",
|
12
12
|
]
|
@@ -19,72 +19,63 @@ checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
|
|
19
19
|
|
20
20
|
[[package]]
|
21
21
|
name = "arrayvec"
|
22
|
-
version = "0.7.
|
22
|
+
version = "0.7.4"
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "
|
24
|
+
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
|
25
25
|
|
26
26
|
[[package]]
|
27
27
|
name = "bindgen"
|
28
|
-
version = "0.
|
28
|
+
version = "0.69.4"
|
29
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
-
checksum = "
|
30
|
+
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
31
31
|
dependencies = [
|
32
32
|
"bitflags",
|
33
33
|
"cexpr",
|
34
34
|
"clang-sys",
|
35
|
+
"itertools",
|
35
36
|
"lazy_static",
|
36
37
|
"lazycell",
|
37
|
-
"peeking_take_while",
|
38
38
|
"proc-macro2",
|
39
39
|
"quote",
|
40
40
|
"regex",
|
41
41
|
"rustc-hash",
|
42
42
|
"shlex",
|
43
|
+
"syn",
|
43
44
|
]
|
44
45
|
|
45
46
|
[[package]]
|
46
47
|
name = "bitflags"
|
47
|
-
version = "
|
48
|
+
version = "2.5.0"
|
48
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
49
|
-
checksum = "
|
50
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
50
51
|
|
51
52
|
[[package]]
|
52
53
|
name = "blake3"
|
53
|
-
version = "1.
|
54
|
+
version = "1.5.1"
|
54
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
55
|
-
checksum = "
|
56
|
+
checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52"
|
56
57
|
dependencies = [
|
57
58
|
"arrayref",
|
58
59
|
"arrayvec",
|
59
60
|
"cc",
|
60
61
|
"cfg-if",
|
61
62
|
"constant_time_eq",
|
62
|
-
"digest",
|
63
63
|
]
|
64
64
|
|
65
65
|
[[package]]
|
66
66
|
name = "blake3ruby"
|
67
|
-
version = "0.1.
|
67
|
+
version = "0.1.1"
|
68
68
|
dependencies = [
|
69
69
|
"blake3",
|
70
70
|
"hex",
|
71
71
|
"magnus",
|
72
72
|
]
|
73
73
|
|
74
|
-
[[package]]
|
75
|
-
name = "block-buffer"
|
76
|
-
version = "0.10.4"
|
77
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
78
|
-
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
79
|
-
dependencies = [
|
80
|
-
"generic-array",
|
81
|
-
]
|
82
|
-
|
83
74
|
[[package]]
|
84
75
|
name = "cc"
|
85
|
-
version = "1.0.
|
76
|
+
version = "1.0.96"
|
86
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
87
|
-
checksum = "
|
78
|
+
checksum = "065a29261d53ba54260972629f9ca6bffa69bac13cd1fed61420f7fa68b9f8bd"
|
88
79
|
|
89
80
|
[[package]]
|
90
81
|
name = "cexpr"
|
@@ -103,9 +94,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
103
94
|
|
104
95
|
[[package]]
|
105
96
|
name = "clang-sys"
|
106
|
-
version = "1.
|
97
|
+
version = "1.7.0"
|
107
98
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
108
|
-
checksum = "
|
99
|
+
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
|
109
100
|
dependencies = [
|
110
101
|
"glob",
|
111
102
|
"libc",
|
@@ -114,40 +105,15 @@ dependencies = [
|
|
114
105
|
|
115
106
|
[[package]]
|
116
107
|
name = "constant_time_eq"
|
117
|
-
version = "0.
|
108
|
+
version = "0.3.0"
|
118
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
119
|
-
checksum = "
|
110
|
+
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
|
120
111
|
|
121
112
|
[[package]]
|
122
|
-
name = "
|
123
|
-
version = "
|
113
|
+
name = "either"
|
114
|
+
version = "1.11.0"
|
124
115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
125
|
-
checksum = "
|
126
|
-
dependencies = [
|
127
|
-
"generic-array",
|
128
|
-
"typenum",
|
129
|
-
]
|
130
|
-
|
131
|
-
[[package]]
|
132
|
-
name = "digest"
|
133
|
-
version = "0.10.6"
|
134
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
135
|
-
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
|
136
|
-
dependencies = [
|
137
|
-
"block-buffer",
|
138
|
-
"crypto-common",
|
139
|
-
"subtle",
|
140
|
-
]
|
141
|
-
|
142
|
-
[[package]]
|
143
|
-
name = "generic-array"
|
144
|
-
version = "0.14.6"
|
145
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
146
|
-
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
|
147
|
-
dependencies = [
|
148
|
-
"typenum",
|
149
|
-
"version_check",
|
150
|
-
]
|
116
|
+
checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
|
151
117
|
|
152
118
|
[[package]]
|
153
119
|
name = "glob"
|
@@ -161,6 +127,15 @@ version = "0.4.3"
|
|
161
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
162
128
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
163
129
|
|
130
|
+
[[package]]
|
131
|
+
name = "itertools"
|
132
|
+
version = "0.12.1"
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
134
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
135
|
+
dependencies = [
|
136
|
+
"either",
|
137
|
+
]
|
138
|
+
|
164
139
|
[[package]]
|
165
140
|
name = "lazy_static"
|
166
141
|
version = "1.4.0"
|
@@ -175,36 +150,37 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
175
150
|
|
176
151
|
[[package]]
|
177
152
|
name = "libc"
|
178
|
-
version = "0.2.
|
153
|
+
version = "0.2.154"
|
179
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
180
|
-
checksum = "
|
155
|
+
checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
|
181
156
|
|
182
157
|
[[package]]
|
183
158
|
name = "libloading"
|
184
|
-
version = "0.
|
159
|
+
version = "0.8.3"
|
185
160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
186
|
-
checksum = "
|
161
|
+
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
|
187
162
|
dependencies = [
|
188
163
|
"cfg-if",
|
189
|
-
"
|
164
|
+
"windows-targets",
|
190
165
|
]
|
191
166
|
|
192
167
|
[[package]]
|
193
168
|
name = "magnus"
|
194
|
-
version = "0.
|
169
|
+
version = "0.6.4"
|
195
170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
196
|
-
checksum = "
|
171
|
+
checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
|
197
172
|
dependencies = [
|
198
173
|
"magnus-macros",
|
199
174
|
"rb-sys",
|
200
175
|
"rb-sys-env",
|
176
|
+
"seq-macro",
|
201
177
|
]
|
202
178
|
|
203
179
|
[[package]]
|
204
180
|
name = "magnus-macros"
|
205
|
-
version = "0.
|
181
|
+
version = "0.6.0"
|
206
182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
207
|
-
checksum = "
|
183
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
208
184
|
dependencies = [
|
209
185
|
"proc-macro2",
|
210
186
|
"quote",
|
@@ -213,9 +189,9 @@ dependencies = [
|
|
213
189
|
|
214
190
|
[[package]]
|
215
191
|
name = "memchr"
|
216
|
-
version = "2.
|
192
|
+
version = "2.7.2"
|
217
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
218
|
-
checksum = "
|
194
|
+
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
|
219
195
|
|
220
196
|
[[package]]
|
221
197
|
name = "minimal-lexical"
|
@@ -233,44 +209,38 @@ dependencies = [
|
|
233
209
|
"minimal-lexical",
|
234
210
|
]
|
235
211
|
|
236
|
-
[[package]]
|
237
|
-
name = "peeking_take_while"
|
238
|
-
version = "0.1.2"
|
239
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
240
|
-
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
241
|
-
|
242
212
|
[[package]]
|
243
213
|
name = "proc-macro2"
|
244
|
-
version = "1.0.
|
214
|
+
version = "1.0.81"
|
245
215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
246
|
-
checksum = "
|
216
|
+
checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
|
247
217
|
dependencies = [
|
248
218
|
"unicode-ident",
|
249
219
|
]
|
250
220
|
|
251
221
|
[[package]]
|
252
222
|
name = "quote"
|
253
|
-
version = "1.0.
|
223
|
+
version = "1.0.36"
|
254
224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
255
|
-
checksum = "
|
225
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
256
226
|
dependencies = [
|
257
227
|
"proc-macro2",
|
258
228
|
]
|
259
229
|
|
260
230
|
[[package]]
|
261
231
|
name = "rb-sys"
|
262
|
-
version = "0.9.
|
232
|
+
version = "0.9.97"
|
263
233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
264
|
-
checksum = "
|
234
|
+
checksum = "47d30bcad206b51f2f66121190ca678dce1fdf3a2eae0ac5d838d1818b19bdf5"
|
265
235
|
dependencies = [
|
266
236
|
"rb-sys-build",
|
267
237
|
]
|
268
238
|
|
269
239
|
[[package]]
|
270
240
|
name = "rb-sys-build"
|
271
|
-
version = "0.9.
|
241
|
+
version = "0.9.97"
|
272
242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
273
|
-
checksum = "
|
243
|
+
checksum = "3cbd92f281615f3c2dcb9dcb0f0576624752afbf9a7f99173b37c4b55b62dd8a"
|
274
244
|
dependencies = [
|
275
245
|
"bindgen",
|
276
246
|
"lazy_static",
|
@@ -289,9 +259,21 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
289
259
|
|
290
260
|
[[package]]
|
291
261
|
name = "regex"
|
292
|
-
version = "1.
|
262
|
+
version = "1.10.4"
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
264
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
265
|
+
dependencies = [
|
266
|
+
"aho-corasick",
|
267
|
+
"memchr",
|
268
|
+
"regex-automata",
|
269
|
+
"regex-syntax",
|
270
|
+
]
|
271
|
+
|
272
|
+
[[package]]
|
273
|
+
name = "regex-automata"
|
274
|
+
version = "0.4.6"
|
293
275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
294
|
-
checksum = "
|
276
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
295
277
|
dependencies = [
|
296
278
|
"aho-corasick",
|
297
279
|
"memchr",
|
@@ -300,9 +282,9 @@ dependencies = [
|
|
300
282
|
|
301
283
|
[[package]]
|
302
284
|
name = "regex-syntax"
|
303
|
-
version = "0.
|
285
|
+
version = "0.8.3"
|
304
286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
305
|
-
checksum = "
|
287
|
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
|
306
288
|
|
307
289
|
[[package]]
|
308
290
|
name = "rustc-hash"
|
@@ -311,28 +293,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
293
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
312
294
|
|
313
295
|
[[package]]
|
314
|
-
name = "
|
315
|
-
version = "
|
296
|
+
name = "seq-macro"
|
297
|
+
version = "0.3.5"
|
316
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
317
|
-
checksum = "
|
299
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
318
300
|
|
319
301
|
[[package]]
|
320
|
-
name = "
|
302
|
+
name = "shell-words"
|
321
303
|
version = "1.1.0"
|
322
304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
323
|
-
checksum = "
|
305
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
324
306
|
|
325
307
|
[[package]]
|
326
|
-
name = "
|
327
|
-
version = "
|
308
|
+
name = "shlex"
|
309
|
+
version = "1.3.0"
|
328
310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
329
|
-
checksum = "
|
311
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
330
312
|
|
331
313
|
[[package]]
|
332
314
|
name = "syn"
|
333
|
-
version = "
|
315
|
+
version = "2.0.60"
|
334
316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
335
|
-
checksum = "
|
317
|
+
checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
|
336
318
|
dependencies = [
|
337
319
|
"proc-macro2",
|
338
320
|
"quote",
|
@@ -340,41 +322,71 @@ dependencies = [
|
|
340
322
|
]
|
341
323
|
|
342
324
|
[[package]]
|
343
|
-
name = "
|
344
|
-
version = "1.
|
325
|
+
name = "unicode-ident"
|
326
|
+
version = "1.0.12"
|
345
327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
346
|
-
checksum = "
|
328
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
347
329
|
|
348
330
|
[[package]]
|
349
|
-
name = "
|
350
|
-
version = "
|
331
|
+
name = "windows-targets"
|
332
|
+
version = "0.52.5"
|
351
333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
352
|
-
checksum = "
|
334
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
335
|
+
dependencies = [
|
336
|
+
"windows_aarch64_gnullvm",
|
337
|
+
"windows_aarch64_msvc",
|
338
|
+
"windows_i686_gnu",
|
339
|
+
"windows_i686_gnullvm",
|
340
|
+
"windows_i686_msvc",
|
341
|
+
"windows_x86_64_gnu",
|
342
|
+
"windows_x86_64_gnullvm",
|
343
|
+
"windows_x86_64_msvc",
|
344
|
+
]
|
353
345
|
|
354
346
|
[[package]]
|
355
|
-
name = "
|
356
|
-
version = "0.
|
347
|
+
name = "windows_aarch64_gnullvm"
|
348
|
+
version = "0.52.5"
|
357
349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
358
|
-
checksum = "
|
350
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
359
351
|
|
360
352
|
[[package]]
|
361
|
-
name = "
|
362
|
-
version = "0.
|
353
|
+
name = "windows_aarch64_msvc"
|
354
|
+
version = "0.52.5"
|
363
355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
364
|
-
checksum = "
|
365
|
-
|
366
|
-
|
367
|
-
"
|
368
|
-
|
356
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
357
|
+
|
358
|
+
[[package]]
|
359
|
+
name = "windows_i686_gnu"
|
360
|
+
version = "0.52.5"
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
362
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
363
|
+
|
364
|
+
[[package]]
|
365
|
+
name = "windows_i686_gnullvm"
|
366
|
+
version = "0.52.5"
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
368
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
369
|
+
|
370
|
+
[[package]]
|
371
|
+
name = "windows_i686_msvc"
|
372
|
+
version = "0.52.5"
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
375
|
+
|
376
|
+
[[package]]
|
377
|
+
name = "windows_x86_64_gnu"
|
378
|
+
version = "0.52.5"
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
380
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
369
381
|
|
370
382
|
[[package]]
|
371
|
-
name = "
|
372
|
-
version = "0.
|
383
|
+
name = "windows_x86_64_gnullvm"
|
384
|
+
version = "0.52.5"
|
373
385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
-
checksum = "
|
386
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
375
387
|
|
376
388
|
[[package]]
|
377
|
-
name = "
|
378
|
-
version = "0.
|
389
|
+
name = "windows_x86_64_msvc"
|
390
|
+
version = "0.52.5"
|
379
391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
380
|
-
checksum = "
|
392
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
data/Gemfile.lock
CHANGED
@@ -1,51 +1,57 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
blake3ruby (0.1.
|
4
|
+
blake3ruby (0.1.1)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
9
|
ast (2.4.2)
|
10
|
-
diff-lcs (1.5.
|
11
|
-
json (2.
|
12
|
-
|
13
|
-
|
10
|
+
diff-lcs (1.5.1)
|
11
|
+
json (2.7.2)
|
12
|
+
language_server-protocol (3.17.0.3)
|
13
|
+
parallel (1.25.1)
|
14
|
+
parser (3.3.3.0)
|
14
15
|
ast (~> 2.4.1)
|
16
|
+
racc
|
17
|
+
racc (1.8.0)
|
15
18
|
rainbow (3.1.1)
|
16
|
-
rake (13.
|
17
|
-
rake-compiler (1.2.
|
19
|
+
rake (13.2.1)
|
20
|
+
rake-compiler (1.2.7)
|
18
21
|
rake
|
19
|
-
rb_sys (0.9.
|
20
|
-
regexp_parser (2.
|
21
|
-
rexml (3.
|
22
|
-
|
23
|
-
|
24
|
-
rspec-
|
25
|
-
rspec-
|
26
|
-
|
27
|
-
|
28
|
-
|
22
|
+
rb_sys (0.9.97)
|
23
|
+
regexp_parser (2.9.2)
|
24
|
+
rexml (3.3.1)
|
25
|
+
strscan
|
26
|
+
rspec (3.13.0)
|
27
|
+
rspec-core (~> 3.13.0)
|
28
|
+
rspec-expectations (~> 3.13.0)
|
29
|
+
rspec-mocks (~> 3.13.0)
|
30
|
+
rspec-core (3.13.0)
|
31
|
+
rspec-support (~> 3.13.0)
|
32
|
+
rspec-expectations (3.13.1)
|
29
33
|
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.
|
31
|
-
rspec-mocks (3.
|
34
|
+
rspec-support (~> 3.13.0)
|
35
|
+
rspec-mocks (3.13.1)
|
32
36
|
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.
|
34
|
-
rspec-support (3.
|
35
|
-
rubocop (1.
|
37
|
+
rspec-support (~> 3.13.0)
|
38
|
+
rspec-support (3.13.1)
|
39
|
+
rubocop (1.64.1)
|
36
40
|
json (~> 2.3)
|
41
|
+
language_server-protocol (>= 3.17.0)
|
37
42
|
parallel (~> 1.10)
|
38
|
-
parser (>= 3.
|
43
|
+
parser (>= 3.3.0.2)
|
39
44
|
rainbow (>= 2.2.2, < 4.0)
|
40
45
|
regexp_parser (>= 1.8, < 3.0)
|
41
46
|
rexml (>= 3.2.5, < 4.0)
|
42
|
-
rubocop-ast (>= 1.
|
47
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
43
48
|
ruby-progressbar (~> 1.7)
|
44
49
|
unicode-display_width (>= 2.4.0, < 3.0)
|
45
|
-
rubocop-ast (1.
|
46
|
-
parser (>= 3.
|
50
|
+
rubocop-ast (1.31.3)
|
51
|
+
parser (>= 3.3.1.0)
|
47
52
|
ruby-progressbar (1.13.0)
|
48
|
-
|
53
|
+
strscan (3.1.0)
|
54
|
+
unicode-display_width (2.5.0)
|
49
55
|
|
50
56
|
PLATFORMS
|
51
57
|
x86_64-darwin-21
|
@@ -59,4 +65,4 @@ DEPENDENCIES
|
|
59
65
|
rubocop (~> 1.21)
|
60
66
|
|
61
67
|
BUNDLED WITH
|
62
|
-
2.
|
68
|
+
2.5.13
|
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# Blake3ruby
|
2
2
|
|
3
3
|
[](https://badge.fury.io/rb/blake3ruby)
|
4
|
-
[](https://codeclimate.com/github/andrewblond/blake3ruby/maintainability)
|
5
|
-
[](https://codeclimate.com/github/andrewblond/blake3ruby/test_coverage)
|
6
4
|
|
7
5
|
This is a Ruby wrapper for the [BLAKE3](https://github.com/BLAKE3-team/BLAKE3) hash function written in Rust.
|
8
6
|
|
data/blake3ruby.gemspec
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/blake3ruby/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "blake3ruby"
|
7
|
+
spec.version = Blake3ruby::VERSION
|
8
|
+
spec.authors = ["Nightforge"]
|
9
|
+
spec.email = ["modo00@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = "Ruby bindings for the blake3 hash function"
|
12
|
+
spec.description = "Ruby bindings for the blake3 hash function using the Rust implementation"
|
13
|
+
spec.homepage = "https://github.com/Nightforge/blake3ruby"
|
14
|
+
spec.required_ruby_version = ">= 3.0"
|
15
|
+
spec.required_rubygems_version = ">= 3.3.11"
|
16
|
+
spec.licenses = %w[MIT Ruby]
|
17
|
+
|
18
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
19
|
+
spec.metadata["source_code_uri"] = "https://github.com/Nightforge/blake3ruby"
|
20
|
+
|
21
|
+
# Specify which files should be added to the gem when it is released.
|
22
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
23
|
+
spec.files = Dir.chdir(__dir__) do
|
24
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
25
|
+
(File.expand_path(f) == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
|
26
|
+
end
|
27
|
+
end
|
28
|
+
spec.files << %w[Cargo.lock LICENSE.txt README.md]
|
29
|
+
spec.bindir = "exe"
|
30
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
31
|
+
spec.require_paths = ["lib"]
|
32
|
+
spec.extensions = ["ext/blake3ruby/Cargo.toml"]
|
33
|
+
end
|
data/ext/blake3ruby/Cargo.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
[package]
|
2
2
|
name = "blake3ruby"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.1"
|
4
4
|
edition = "2021"
|
5
5
|
authors = ["Nightforge <modo00@gmail.com>"]
|
6
6
|
publish = false
|
@@ -9,6 +9,9 @@ publish = false
|
|
9
9
|
crate-type = ["cdylib"]
|
10
10
|
|
11
11
|
[dependencies]
|
12
|
-
magnus = { version = "0.
|
12
|
+
magnus = { version = "0.6.4" }
|
13
13
|
hex = { version = "0.4.3" }
|
14
|
-
blake3 = "1.
|
14
|
+
blake3 = { version = "1.5.1" }
|
15
|
+
|
16
|
+
[package.metadata.magnus]
|
17
|
+
rbconfig = true
|
data/lib/blake3ruby/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blake3ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nightforge
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Ruby bindings for the blake3 hash function using the Rust implementation
|
14
14
|
email:
|
@@ -28,6 +28,7 @@ files:
|
|
28
28
|
- LICENSE.txt
|
29
29
|
- README.md
|
30
30
|
- Rakefile
|
31
|
+
- blake3ruby.gemspec
|
31
32
|
- ext/blake3ruby/Cargo.toml
|
32
33
|
- ext/blake3ruby/extconf.rb
|
33
34
|
- ext/blake3ruby/src/lib.rs
|
@@ -56,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
57
|
- !ruby/object:Gem::Version
|
57
58
|
version: 3.3.11
|
58
59
|
requirements: []
|
59
|
-
rubygems_version: 3.
|
60
|
+
rubygems_version: 3.5.13
|
60
61
|
signing_key:
|
61
62
|
specification_version: 4
|
62
63
|
summary: Ruby bindings for the blake3 hash function
|