fast_priority_queue 0.1.1 → 0.1.2
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/README.md +2 -2
- data/fast_priority_queue.gemspec +2 -2
- data/lib/fast_priority_queue/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42e241221191db5e8afc6957fe12c5f76cf17271
|
|
4
|
+
data.tar.gz: e47c260a7da45e25de8f5c98dae7fed2102847fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 435391f38a3e44be34b9743378df24945c2c0bf70f5c3c3214cf2341a5e0fb7cca34501d597d7925289c7a5f72e50667f18df4e8e2b59113287734d48f3f497c
|
|
7
|
+
data.tar.gz: e1d49a2437bdf32eca9202a1969356fe7dfd0144088aad86b666b80a8ee8800ec7306d876757bddf694ad4430df2e0844ad259d518f0be4533fe4a8ac4b9016a
|
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# FastPriorityQueue
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://badge.fury.io/rb/fast_priority_queue)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
A blazzingly fast implementation of priority queue using [Rust](https://www.rust-lang.org/en-US/) + [Ruru](https://github.com/d-unseductable/ruru)
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
data/fast_priority_queue.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Simon Soriano"]
|
|
10
10
|
spec.email = ["simon0191@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = "
|
|
13
|
-
spec.description = "
|
|
12
|
+
spec.summary = "Priority queue implementation using Rust"
|
|
13
|
+
spec.description = "A blazzingly fast implementation of priority queue using Rust + Ruru"
|
|
14
14
|
spec.homepage = "https://github.com/simon0191/fast_priority_queue"
|
|
15
15
|
|
|
16
16
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fast_priority_queue
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simon Soriano
|
|
@@ -80,7 +80,7 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
description:
|
|
83
|
+
description: A blazzingly fast implementation of priority queue using Rust + Ruru
|
|
84
84
|
email:
|
|
85
85
|
- simon0191@gmail.com
|
|
86
86
|
executables: []
|
|
@@ -125,5 +125,5 @@ rubyforge_project:
|
|
|
125
125
|
rubygems_version: 2.5.1
|
|
126
126
|
signing_key:
|
|
127
127
|
specification_version: 4
|
|
128
|
-
summary:
|
|
128
|
+
summary: Priority queue implementation using Rust
|
|
129
129
|
test_files: []
|