blake3-rb 0.1.0.pre10 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +8 -8
- data/README.md +5 -3
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35dbce36e277fde818a6390613a5bd4c3dd6067f4ea49f5dc5c3d5e03078d310
|
4
|
+
data.tar.gz: 60361d586b50c60ccbd1589d523178808ffb1cecae739a5cc785a086b6237534
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7c5262e0631202e07c94993075abda85f3ef0a450dacceb8020eed8ddd4efbd2e864b23b68af599d742ee11c8eafc88888014bc668a185e121a848e790a6d1c
|
7
|
+
data.tar.gz: be38740fceae9f2e0654cd0a503a289b1dc28b42f3d5b2a4c0efe5e5fcb2201a95b8d413c59204ad186b6179fd27adf0715097fcfa48d484d042524147a97ea8
|
data/Cargo.lock
CHANGED
@@ -45,9 +45,9 @@ dependencies = [
|
|
45
45
|
|
46
46
|
[[package]]
|
47
47
|
name = "bitflags"
|
48
|
-
version = "2.4.
|
48
|
+
version = "2.4.1"
|
49
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
-
checksum = "
|
50
|
+
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
|
51
51
|
|
52
52
|
[[package]]
|
53
53
|
name = "blake3"
|
@@ -217,9 +217,9 @@ dependencies = [
|
|
217
217
|
|
218
218
|
[[package]]
|
219
219
|
name = "regex"
|
220
|
-
version = "1.10.
|
220
|
+
version = "1.10.2"
|
221
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
222
|
-
checksum = "
|
222
|
+
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
223
223
|
dependencies = [
|
224
224
|
"aho-corasick",
|
225
225
|
"memchr",
|
@@ -229,9 +229,9 @@ dependencies = [
|
|
229
229
|
|
230
230
|
[[package]]
|
231
231
|
name = "regex-automata"
|
232
|
-
version = "0.4.
|
232
|
+
version = "0.4.3"
|
233
233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
234
|
-
checksum = "
|
234
|
+
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
235
235
|
dependencies = [
|
236
236
|
"aho-corasick",
|
237
237
|
"memchr",
|
@@ -240,9 +240,9 @@ dependencies = [
|
|
240
240
|
|
241
241
|
[[package]]
|
242
242
|
name = "regex-syntax"
|
243
|
-
version = "0.8.
|
243
|
+
version = "0.8.2"
|
244
244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
245
|
-
checksum = "
|
245
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
246
246
|
|
247
247
|
[[package]]
|
248
248
|
name = "rustc-hash"
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# `blake3-rb`
|
2
2
|
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/blake3-rb.svg)](https://badge.fury.io/rb/blake3-rb)
|
3
4
|
![Build Status](https://github.com/Shopify/blake3-ruby/workflows/CI/badge.svg)
|
4
5
|
|
5
6
|
Blake3 is a Ruby gem that provides a simple and efficient way to compute the Blake3 cryptographic hash function. This gem is designed to be easy to use and integrate into your Ruby projects using the Ruby [`digest` framework](https://github.com/ruby/digest).
|
@@ -9,13 +10,14 @@ Blake3 is a Ruby gem that provides a simple and efficient way to compute the Bla
|
|
9
10
|
Add this line to your application's Gemfile:
|
10
11
|
|
11
12
|
```ruby
|
12
|
-
gem "blake3-rb"
|
13
|
+
gem "blake3-rb"
|
13
14
|
```
|
14
15
|
|
15
|
-
|
16
|
+
We provide pre-built binaries most common platforms. This is the preferred way to install this gem since it will be faster and more reliable than compiling from source. Make sure Bundler is configured to use the pre-built binaries by running:
|
16
17
|
|
17
18
|
```bash
|
18
|
-
|
19
|
+
bundle lock --add-platform x86_64-linux
|
20
|
+
bundle install # resolve dependencies for platform-specific gems
|
19
21
|
```
|
20
22
|
|
21
23
|
## Usage
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blake3-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian Ker-Seymer
|
@@ -25,8 +25,7 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0.9'
|
27
27
|
description: Provides native bindings to the Blake3 hash function for Ruby.
|
28
|
-
email:
|
29
|
-
- ian.kerseymer@shopify.com
|
28
|
+
email:
|
30
29
|
executables: []
|
31
30
|
extensions:
|
32
31
|
- ext/digest/blake3_ext/extconf.rb
|
@@ -57,12 +56,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
57
56
|
requirements:
|
58
57
|
- - ">="
|
59
58
|
- !ruby/object:Gem::Version
|
60
|
-
version: 3.
|
59
|
+
version: 3.1.0
|
61
60
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
61
|
requirements:
|
63
|
-
- - "
|
62
|
+
- - ">="
|
64
63
|
- !ruby/object:Gem::Version
|
65
|
-
version:
|
64
|
+
version: '0'
|
66
65
|
requirements: []
|
67
66
|
rubygems_version: 3.4.10
|
68
67
|
signing_key:
|