From 8306ca5c51be4868b07ca0d339be48e8ee530f9b Mon Sep 17 00:00:00 2001 From: Marc Azar <43026186+MarcAzar@users.noreply.github.com> Date: Tue, 19 Mar 2019 13:16:31 +0200 Subject: [PATCH] Marc azar patch 1 (#1032) * Added Cyclic Polynomial Hash package * Add BitVector package. * Update website pages of BipBuffer and Cyclic-Polynomial-Hash packages. --- packages.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 6dc68da..754df4c 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,18 @@ [ + { + "name": "BitVector", + "url": "https://github.com/MarcAzar/BitVector", + "method": "git", + "tags": [ + "Bit", + "Array", + "Vector", + "Bloom" + ], + "description": "A high performance Nim implementation of BitVector with base SomeUnsignedInt(i.e: uint8-64) with support for slices, and seq supported operations", + "license": "MIT", + "web": "https://marcazar.github.io/BitVector" + }, { "name": "Cyclic-Polynomial-Hash", "url": "https://github.com/MarcAzar/Cyclic-Polynomial-Hash", @@ -12,7 +26,7 @@ ], "description": "A Nim implementation of a Cyclic Polynomial Hash, aka BuzHash", "license": "MIT", - "web": "https://github.com/MarcAzar/Cyclic-Polynomial-Hash" + "web": "https://marcazar.github.io/Cyclic-Polynomial-Hash" }, { "name": "BipBuffer", @@ -27,7 +41,7 @@ ], "description": "A Nim implementation of Simon Cooke's Bip Buffer. A type of circular buffer ensuring contiguous blocks of memory", "license": "MIT", - "web": "https://github.com/MarcAzar/BipBuffer" + "web": "https://marcazar.github.io/BipBuffer" }, { "name": "whip",