blake3ruby 0.2.3 → 0.3.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 +4 -4
- data/.rubocop.yml +1 -1
- data/Cargo.lock +44 -44
- data/Gemfile.lock +37 -31
- data/README.md +11 -11
- data/blake3ruby.gemspec +1 -1
- data/ext/blake3ruby/Cargo.toml +2 -2
- data/lib/blake3ruby/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5778fdf082062f7ec0d75ef475c366a8ee7caa0324abc4b31cf5b62332ebbdc1
|
4
|
+
data.tar.gz: 8c1a00d03c991732c745dde373a53cff23a27ffbad2793c73a686448fad37f66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa242d13268e65830cfab9f26807d4299e48d2ec43688ba337e4d2fc7d997ad96a52b8a4f1e8894e30c9fc53026a123533f993099af3ef8330834401066a88a8
|
7
|
+
data.tar.gz: b8202389aad71722d6a2fd25af7034389b2600440414628a04c85bacc99181c30d4c48a8417bf00bc482cab55531d16799e58d0f94e45d12c243363c223a3e2e
|
data/.rubocop.yml
CHANGED
data/Cargo.lock
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
2
2
|
# It is not intended for manual editing.
|
3
|
-
version =
|
3
|
+
version = 4
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "aho-corasick"
|
@@ -13,21 +13,21 @@ dependencies = [
|
|
13
13
|
|
14
14
|
[[package]]
|
15
15
|
name = "arrayref"
|
16
|
-
version = "0.3.
|
16
|
+
version = "0.3.9"
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
-
checksum = "
|
18
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
19
19
|
|
20
20
|
[[package]]
|
21
21
|
name = "arrayvec"
|
22
|
-
version = "0.7.
|
22
|
+
version = "0.7.6"
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "
|
24
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
25
25
|
|
26
26
|
[[package]]
|
27
27
|
name = "bindgen"
|
28
|
-
version = "0.69.
|
28
|
+
version = "0.69.5"
|
29
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
-
checksum = "
|
30
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
31
31
|
dependencies = [
|
32
32
|
"bitflags",
|
33
33
|
"cexpr",
|
@@ -45,15 +45,15 @@ dependencies = [
|
|
45
45
|
|
46
46
|
[[package]]
|
47
47
|
name = "bitflags"
|
48
|
-
version = "2.
|
48
|
+
version = "2.9.0"
|
49
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
-
checksum = "
|
50
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
51
51
|
|
52
52
|
[[package]]
|
53
53
|
name = "blake3"
|
54
|
-
version = "1.
|
54
|
+
version = "1.8.1"
|
55
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
-
checksum = "
|
56
|
+
checksum = "389a099b34312839e16420d499a9cad9650541715937ffbdd40d36f49e77eeb3"
|
57
57
|
dependencies = [
|
58
58
|
"arrayref",
|
59
59
|
"arrayvec",
|
@@ -64,7 +64,7 @@ dependencies = [
|
|
64
64
|
|
65
65
|
[[package]]
|
66
66
|
name = "blake3ruby"
|
67
|
-
version = "0.
|
67
|
+
version = "0.3.0"
|
68
68
|
dependencies = [
|
69
69
|
"blake3",
|
70
70
|
"hex",
|
@@ -73,9 +73,9 @@ dependencies = [
|
|
73
73
|
|
74
74
|
[[package]]
|
75
75
|
name = "cc"
|
76
|
-
version = "1.
|
76
|
+
version = "1.2.19"
|
77
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
78
|
-
checksum = "
|
78
|
+
checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
|
79
79
|
dependencies = [
|
80
80
|
"shlex",
|
81
81
|
]
|
@@ -108,21 +108,21 @@ dependencies = [
|
|
108
108
|
|
109
109
|
[[package]]
|
110
110
|
name = "constant_time_eq"
|
111
|
-
version = "0.3.
|
111
|
+
version = "0.3.1"
|
112
112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
113
|
-
checksum = "
|
113
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
114
114
|
|
115
115
|
[[package]]
|
116
116
|
name = "either"
|
117
|
-
version = "1.
|
117
|
+
version = "1.15.0"
|
118
118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
119
|
-
checksum = "
|
119
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
120
120
|
|
121
121
|
[[package]]
|
122
122
|
name = "glob"
|
123
|
-
version = "0.3.
|
123
|
+
version = "0.3.2"
|
124
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
125
|
-
checksum = "
|
125
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
126
126
|
|
127
127
|
[[package]]
|
128
128
|
name = "hex"
|
@@ -153,15 +153,15 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
153
153
|
|
154
154
|
[[package]]
|
155
155
|
name = "libc"
|
156
|
-
version = "0.2.
|
156
|
+
version = "0.2.171"
|
157
157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
158
|
-
checksum = "
|
158
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
159
159
|
|
160
160
|
[[package]]
|
161
161
|
name = "libloading"
|
162
|
-
version = "0.8.
|
162
|
+
version = "0.8.6"
|
163
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
164
|
-
checksum = "
|
164
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
165
165
|
dependencies = [
|
166
166
|
"cfg-if",
|
167
167
|
"windows-targets",
|
@@ -214,36 +214,36 @@ dependencies = [
|
|
214
214
|
|
215
215
|
[[package]]
|
216
216
|
name = "proc-macro2"
|
217
|
-
version = "1.0.
|
217
|
+
version = "1.0.94"
|
218
218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
219
|
-
checksum = "
|
219
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
220
220
|
dependencies = [
|
221
221
|
"unicode-ident",
|
222
222
|
]
|
223
223
|
|
224
224
|
[[package]]
|
225
225
|
name = "quote"
|
226
|
-
version = "1.0.
|
226
|
+
version = "1.0.40"
|
227
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
228
|
-
checksum = "
|
228
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
229
229
|
dependencies = [
|
230
230
|
"proc-macro2",
|
231
231
|
]
|
232
232
|
|
233
233
|
[[package]]
|
234
234
|
name = "rb-sys"
|
235
|
-
version = "0.9.
|
235
|
+
version = "0.9.111"
|
236
236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
237
|
-
checksum = "
|
237
|
+
checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
|
238
238
|
dependencies = [
|
239
239
|
"rb-sys-build",
|
240
240
|
]
|
241
241
|
|
242
242
|
[[package]]
|
243
243
|
name = "rb-sys-build"
|
244
|
-
version = "0.9.
|
244
|
+
version = "0.9.111"
|
245
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
246
|
-
checksum = "
|
246
|
+
checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
|
247
247
|
dependencies = [
|
248
248
|
"bindgen",
|
249
249
|
"lazy_static",
|
@@ -262,9 +262,9 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
262
262
|
|
263
263
|
[[package]]
|
264
264
|
name = "regex"
|
265
|
-
version = "1.
|
265
|
+
version = "1.11.1"
|
266
266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
267
|
-
checksum = "
|
267
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
268
268
|
dependencies = [
|
269
269
|
"aho-corasick",
|
270
270
|
"memchr",
|
@@ -274,9 +274,9 @@ dependencies = [
|
|
274
274
|
|
275
275
|
[[package]]
|
276
276
|
name = "regex-automata"
|
277
|
-
version = "0.4.
|
277
|
+
version = "0.4.9"
|
278
278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
279
|
-
checksum = "
|
279
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
280
280
|
dependencies = [
|
281
281
|
"aho-corasick",
|
282
282
|
"memchr",
|
@@ -285,9 +285,9 @@ dependencies = [
|
|
285
285
|
|
286
286
|
[[package]]
|
287
287
|
name = "regex-syntax"
|
288
|
-
version = "0.8.
|
288
|
+
version = "0.8.5"
|
289
289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
290
|
-
checksum = "
|
290
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
291
291
|
|
292
292
|
[[package]]
|
293
293
|
name = "rustc-hash"
|
@@ -297,9 +297,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
297
297
|
|
298
298
|
[[package]]
|
299
299
|
name = "seq-macro"
|
300
|
-
version = "0.3.
|
300
|
+
version = "0.3.6"
|
301
301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
302
|
-
checksum = "
|
302
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
303
303
|
|
304
304
|
[[package]]
|
305
305
|
name = "shell-words"
|
@@ -315,9 +315,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
315
315
|
|
316
316
|
[[package]]
|
317
317
|
name = "syn"
|
318
|
-
version = "2.0.
|
318
|
+
version = "2.0.100"
|
319
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
320
|
-
checksum = "
|
320
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
321
321
|
dependencies = [
|
322
322
|
"proc-macro2",
|
323
323
|
"quote",
|
@@ -326,9 +326,9 @@ dependencies = [
|
|
326
326
|
|
327
327
|
[[package]]
|
328
328
|
name = "unicode-ident"
|
329
|
-
version = "1.0.
|
329
|
+
version = "1.0.18"
|
330
330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
331
|
-
checksum = "
|
331
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
332
332
|
|
333
333
|
[[package]]
|
334
334
|
name = "windows-targets"
|
data/Gemfile.lock
CHANGED
@@ -1,61 +1,67 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
blake3ruby (0.
|
4
|
+
blake3ruby (0.3.0)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
ast (2.4.
|
10
|
-
diff-lcs (1.
|
11
|
-
json (2.
|
12
|
-
language_server-protocol (3.17.0.
|
13
|
-
|
14
|
-
|
9
|
+
ast (2.4.3)
|
10
|
+
diff-lcs (1.6.1)
|
11
|
+
json (2.10.2)
|
12
|
+
language_server-protocol (3.17.0.4)
|
13
|
+
lint_roller (1.1.0)
|
14
|
+
parallel (1.26.3)
|
15
|
+
parser (3.3.7.4)
|
15
16
|
ast (~> 2.4.1)
|
16
17
|
racc
|
18
|
+
prism (1.4.0)
|
17
19
|
racc (1.8.1)
|
18
20
|
rainbow (3.1.1)
|
19
21
|
rake (13.2.1)
|
20
|
-
rake-compiler (1.
|
22
|
+
rake-compiler (1.3.0)
|
21
23
|
rake
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
24
|
+
rake-compiler-dock (1.9.1)
|
25
|
+
rb_sys (0.9.111)
|
26
|
+
rake-compiler-dock (= 1.9.1)
|
27
|
+
regexp_parser (2.10.0)
|
26
28
|
rspec (3.13.0)
|
27
29
|
rspec-core (~> 3.13.0)
|
28
30
|
rspec-expectations (~> 3.13.0)
|
29
31
|
rspec-mocks (~> 3.13.0)
|
30
|
-
rspec-core (3.13.
|
32
|
+
rspec-core (3.13.3)
|
31
33
|
rspec-support (~> 3.13.0)
|
32
|
-
rspec-expectations (3.13.
|
34
|
+
rspec-expectations (3.13.3)
|
33
35
|
diff-lcs (>= 1.2.0, < 2.0)
|
34
36
|
rspec-support (~> 3.13.0)
|
35
|
-
rspec-mocks (3.13.
|
37
|
+
rspec-mocks (3.13.2)
|
36
38
|
diff-lcs (>= 1.2.0, < 2.0)
|
37
39
|
rspec-support (~> 3.13.0)
|
38
|
-
rspec-support (3.13.
|
39
|
-
rubocop (1.
|
40
|
+
rspec-support (3.13.2)
|
41
|
+
rubocop (1.75.2)
|
40
42
|
json (~> 2.3)
|
41
|
-
language_server-protocol (
|
43
|
+
language_server-protocol (~> 3.17.0.2)
|
44
|
+
lint_roller (~> 1.1.0)
|
42
45
|
parallel (~> 1.10)
|
43
46
|
parser (>= 3.3.0.2)
|
44
47
|
rainbow (>= 2.2.2, < 4.0)
|
45
|
-
regexp_parser (>= 2.
|
46
|
-
|
47
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
48
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
49
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
48
50
|
ruby-progressbar (~> 1.7)
|
49
|
-
unicode-display_width (>= 2.4.0, <
|
50
|
-
rubocop-ast (1.
|
51
|
-
parser (>= 3.3.
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
rubocop (
|
51
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
52
|
+
rubocop-ast (1.44.1)
|
53
|
+
parser (>= 3.3.7.2)
|
54
|
+
prism (~> 1.4)
|
55
|
+
rubocop-rake (0.7.1)
|
56
|
+
lint_roller (~> 1.1)
|
57
|
+
rubocop (>= 1.72.1)
|
58
|
+
rubocop-rspec (3.5.0)
|
59
|
+
lint_roller (~> 1.1)
|
60
|
+
rubocop (~> 1.72, >= 1.72.1)
|
56
61
|
ruby-progressbar (1.13.0)
|
57
|
-
|
58
|
-
|
62
|
+
unicode-display_width (3.1.4)
|
63
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
64
|
+
unicode-emoji (4.0.4)
|
59
65
|
|
60
66
|
PLATFORMS
|
61
67
|
aarch64-linux
|
@@ -78,4 +84,4 @@ DEPENDENCIES
|
|
78
84
|
rubocop-rspec
|
79
85
|
|
80
86
|
BUNDLED WITH
|
81
|
-
2.
|
87
|
+
2.6.7
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
This is a Ruby wrapper for the [BLAKE3](https://github.com/BLAKE3-team/BLAKE3) hash function written in Rust.
|
6
6
|
|
7
7
|
## Requirements
|
8
|
-
Tested on Ruby 3.1, 3.2 and 3.
|
8
|
+
Tested on Ruby 3.1, 3.2, 3.3 and 3.4.
|
9
9
|
You will need to have Rust installed on your system, and the `cargo` command available in your path.
|
10
10
|
See [here](https://www.rust-lang.org/tools/install) for instructions on how to install Rust.
|
11
11
|
Rust is only required to build the gem, not to use it.
|
@@ -72,7 +72,7 @@ In versions 0.1.0 and 0.1.1, the Blake3ruby namespace was available. Starting fr
|
|
72
72
|
The performance of this gem is comparable to the performance of the [blake3](https://github.com/BLAKE3-team/BLAKE3)
|
73
73
|
crate, which is written in Rust.
|
74
74
|
|
75
|
-
The following benchmark was run on a 2015 MacBook Pro with a 2.5 GHz 4-Core Intel Core i7 processor and 16 GB of RAM.
|
75
|
+
The following benchmark was run on a 2015 MacBook Pro with a 2.5 GHz 4-Core Intel Core i7 processor and 16 GB of RAM.
|
76
76
|
```
|
77
77
|
MD5 (13 chars): 6.141045 0.086745 6.227790 ( 6.263524)
|
78
78
|
SHA1 (13 chars): 6.230957 0.080145 6.311102 ( 6.333384)
|
@@ -123,16 +123,16 @@ Fastest: blake3 with 8.499842999968678 seconds
|
|
123
123
|
Slowest: RMD160 with 24.535302000120282 seconds
|
124
124
|
```
|
125
125
|
|
126
|
-
Another benchmark was run on a 2022 MacBook Pro with a Apple M1 processor and 16 GB of RAM.
|
126
|
+
Another benchmark was run on a 2022 MacBook Pro with a Apple M1 processor and 16 GB of RAM.
|
127
127
|
```
|
128
|
-
|
129
|
-
MD5:
|
130
|
-
SHA1:
|
131
|
-
SHA3-256:
|
132
|
-
SHA3-384:
|
133
|
-
SHA3-512:
|
134
|
-
RMD160:
|
135
|
-
blake3:
|
128
|
+
user system total real
|
129
|
+
MD5 (13 chars): 4.055481 0.041212 4.096693 ( 4.097044)
|
130
|
+
SHA1 (13 chars): 3.862285 0.050686 3.912971 ( 3.928102)
|
131
|
+
SHA3-256 (13 chars): 2.293100 0.052982 2.346082 ( 2.346571)
|
132
|
+
SHA3-384 (13 chars): 2.767608 0.079975 2.847583 ( 2.847594)
|
133
|
+
SHA3-512 (13 chars): 2.792520 0.070482 2.863002 ( 2.862991)
|
134
|
+
RMD160 (13 chars): 2.842812 0.036370 2.879182 ( 3.097712)
|
135
|
+
blake3 (13 chars): 1.208742 0.004124 1.212866 ( 1.212986)
|
136
136
|
```
|
137
137
|
|
138
138
|
In both cases, the `blake3ruby` gem was about 2.5 times faster than the md5, sha1, sha3-256, sha3-384, sha3-512, and rmd160 digest algorithms.
|
data/blake3ruby.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
spec.summary = "Ruby bindings for the blake3 hash function"
|
12
12
|
spec.description = "Ruby bindings for the blake3 hash function using the Rust implementation"
|
13
13
|
spec.homepage = "https://github.com/Nightforge/blake3ruby"
|
14
|
-
spec.required_ruby_version = ">= 3.
|
14
|
+
spec.required_ruby_version = ">= 3.1"
|
15
15
|
spec.required_rubygems_version = ">= 3.3.11"
|
16
16
|
spec.licenses = %w[MIT Ruby]
|
17
17
|
|
data/ext/blake3ruby/Cargo.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
[package]
|
2
2
|
name = "blake3ruby"
|
3
|
-
version = "0.
|
3
|
+
version = "0.3.0"
|
4
4
|
edition = "2021"
|
5
5
|
authors = ["Nightforge <modo00@gmail.com>"]
|
6
6
|
publish = false
|
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
|
|
11
11
|
[dependencies]
|
12
12
|
magnus = { version = "0.7.1" }
|
13
13
|
hex = { version = "0.4.3" }
|
14
|
-
blake3 = { version = "1.
|
14
|
+
blake3 = { version = "1.7" }
|
15
15
|
|
16
16
|
[package.metadata.magnus]
|
17
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.
|
4
|
+
version: 0.3.0
|
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: 2025-04-13 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:
|
@@ -51,14 +51,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '3.
|
54
|
+
version: '3.1'
|
55
55
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
57
|
- - ">="
|
58
58
|
- !ruby/object:Gem::Version
|
59
59
|
version: 3.3.11
|
60
60
|
requirements: []
|
61
|
-
rubygems_version: 3.5.
|
61
|
+
rubygems_version: 3.5.21
|
62
62
|
signing_key:
|
63
63
|
specification_version: 4
|
64
64
|
summary: Ruby bindings for the blake3 hash function
|