diff options
| author | Marc Azar <43026186+MarcAzar@users.noreply.github.com> | 2019-03-19 13:16:31 +0200 |
|---|---|---|
| committer | Miran <narimiran@disroot.org> | 2019-03-19 12:16:31 +0100 |
| commit | 8306ca5c51be4868b07ca0d339be48e8ee530f9b (patch) | |
| tree | 4960fea86ea999dceffd61a6e7aa098fa7cd7a5e | |
| parent | 0b07710df8bb81972c34971cb4030c7aadb4cfb4 (diff) | |
| download | packages-8306ca5c51be4868b07ca0d339be48e8ee530f9b.tar.gz packages-8306ca5c51be4868b07ca0d339be48e8ee530f9b.zip | |
Marc azar patch 1 (#1032)
* Added Cyclic Polynomial Hash package
* Add BitVector package.
* Update website pages of BipBuffer and Cyclic-Polynomial-Hash packages.
| -rw-r--r-- | packages.json | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/packages.json b/packages.json index 6dc68da..754df4c 100644 --- a/packages.json +++ b/packages.json @@ -1,5 +1,19 @@ [ { + "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", "method": "git", @@ -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", |
