blake3ruby 0.3.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5778fdf082062f7ec0d75ef475c366a8ee7caa0324abc4b31cf5b62332ebbdc1
4
- data.tar.gz: 8c1a00d03c991732c745dde373a53cff23a27ffbad2793c73a686448fad37f66
3
+ metadata.gz: 8fa0061a1f4fc0cd9021587e2de7e0bb3a4b4ae3507bd6e08ef88400c54c2c5f
4
+ data.tar.gz: 89510a40184c8a4eeac721de5d39137e4e37626faf0c31498c38ba78b9cd8432
5
5
  SHA512:
6
- metadata.gz: fa242d13268e65830cfab9f26807d4299e48d2ec43688ba337e4d2fc7d997ad96a52b8a4f1e8894e30c9fc53026a123533f993099af3ef8330834401066a88a8
7
- data.tar.gz: b8202389aad71722d6a2fd25af7034389b2600440414628a04c85bacc99181c30d4c48a8417bf00bc482cab55531d16799e58d0f94e45d12c243363c223a3e2e
6
+ metadata.gz: 2078bfc07a938c8654209b242f5d508726d7a73832facb024e539234286f728663a082145d4bb6c966a818c18a82f170a45512b864d6ff2bc6768f3bd203c695
7
+ data.tar.gz: 89e15e0a7e521a2bc8929e02c44295caeba608e58d370c42f9f62ee5a4015c5bba0814a61242ec69beb27f2ccf7dddb578beb3ec234699a5c088f00093b8beaf
data/Cargo.lock CHANGED
@@ -51,9 +51,9 @@ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
51
51
 
52
52
  [[package]]
53
53
  name = "blake3"
54
- version = "1.8.1"
54
+ version = "1.8.2"
55
55
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
- checksum = "389a099b34312839e16420d499a9cad9650541715937ffbdd40d36f49e77eeb3"
56
+ checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
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.3.0"
67
+ version = "0.3.1"
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.2.19"
76
+ version = "1.2.20"
77
77
  source = "registry+https://github.com/rust-lang/crates.io-index"
78
- checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
78
+ checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a"
79
79
  dependencies = [
80
80
  "shlex",
81
81
  ]
@@ -153,9 +153,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
153
153
 
154
154
  [[package]]
155
155
  name = "libc"
156
- version = "0.2.171"
156
+ version = "0.2.172"
157
157
  source = "registry+https://github.com/rust-lang/crates.io-index"
158
- checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
158
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
159
159
 
160
160
  [[package]]
161
161
  name = "libloading"
@@ -214,9 +214,9 @@ dependencies = [
214
214
 
215
215
  [[package]]
216
216
  name = "proc-macro2"
217
- version = "1.0.94"
217
+ version = "1.0.95"
218
218
  source = "registry+https://github.com/rust-lang/crates.io-index"
219
- checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
219
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
220
220
  dependencies = [
221
221
  "unicode-ident",
222
222
  ]
@@ -315,9 +315,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
315
315
 
316
316
  [[package]]
317
317
  name = "syn"
318
- version = "2.0.100"
318
+ version = "2.0.101"
319
319
  source = "registry+https://github.com/rust-lang/crates.io-index"
320
- checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
320
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
321
321
  dependencies = [
322
322
  "proc-macro2",
323
323
  "quote",
data/Gemfile.lock CHANGED
@@ -1,18 +1,18 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- blake3ruby (0.3.0)
4
+ blake3ruby (0.3.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  ast (2.4.3)
10
10
  diff-lcs (1.6.1)
11
- json (2.10.2)
11
+ json (2.11.3)
12
12
  language_server-protocol (3.17.0.4)
13
13
  lint_roller (1.1.0)
14
- parallel (1.26.3)
15
- parser (3.3.7.4)
14
+ parallel (1.27.0)
15
+ parser (3.3.8.0)
16
16
  ast (~> 2.4.1)
17
17
  racc
18
18
  prism (1.4.0)
@@ -38,7 +38,7 @@ GEM
38
38
  diff-lcs (>= 1.2.0, < 2.0)
39
39
  rspec-support (~> 3.13.0)
40
40
  rspec-support (3.13.2)
41
- rubocop (1.75.2)
41
+ rubocop (1.75.3)
42
42
  json (~> 2.3)
43
43
  language_server-protocol (~> 3.17.0.2)
44
44
  lint_roller (~> 1.1.0)
@@ -55,7 +55,7 @@ GEM
55
55
  rubocop-rake (0.7.1)
56
56
  lint_roller (~> 1.1)
57
57
  rubocop (>= 1.72.1)
58
- rubocop-rspec (3.5.0)
58
+ rubocop-rspec (3.6.0)
59
59
  lint_roller (~> 1.1)
60
60
  rubocop (~> 1.72, >= 1.72.1)
61
61
  ruby-progressbar (1.13.0)
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "blake3ruby"
3
- version = "0.3.0"
3
+ version = "0.3.1"
4
4
  edition = "2021"
5
5
  authors = ["Nightforge <modo00@gmail.com>"]
6
6
  publish = false
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Blake3ruby
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blake3ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nightforge
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2025-04-13 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: Ruby bindings for the blake3 hash function using the Rust implementation
14
13
  email:
@@ -43,7 +42,6 @@ metadata:
43
42
  homepage_uri: https://github.com/Nightforge/blake3ruby
44
43
  source_code_uri: https://github.com/Nightforge/blake3ruby
45
44
  rubygems_mfa_required: 'true'
46
- post_install_message:
47
45
  rdoc_options: []
48
46
  require_paths:
49
47
  - lib
@@ -58,8 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
58
56
  - !ruby/object:Gem::Version
59
57
  version: 3.3.11
60
58
  requirements: []
61
- rubygems_version: 3.5.21
62
- signing_key:
59
+ rubygems_version: 3.6.7
63
60
  specification_version: 4
64
61
  summary: Ruby bindings for the blake3 hash function
65
62
  test_files: []