From ddbb34141503e451f9a6f9d321f269e6cfe7ce4d Mon Sep 17 00:00:00 2001 From: PMunch Date: Tue, 4 Oct 2016 16:31:11 +0200 Subject: Added SDL gamelib (#416) * Added gamelib * Fixed spelling and changes tabs to spaces --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 0984946..91f1a52 100644 --- a/packages.json +++ b/packages.json @@ -843,6 +843,19 @@ "license": "MIT", "web": "https://github.com/nim-lang/sdl2" }, + { + "name": "gamelib", + "url": "https://github.com/PMunch/SDLGamelib", + "method": "git", + "tags": [ + "sdl", + "game", + "library" + ], + "description": "A library of functions to make creating games using Nim and SDL2 easier. This does not intend to be a full blown engine and tries to keep all the components loosely coupled so that individual parts can be used separately.", + "license": "MIT", + "web": "https://github.com/PMunch/SDLGamelib" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", -- cgit v1.2.3 From 65463a771cef4fe7e6c1e6202d521c9fc3886b7e Mon Sep 17 00:00:00 2001 From: achesak Date: Wed, 12 Oct 2016 14:32:59 -0400 Subject: Added fileinput --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 91f1a52..b9de5de 100644 --- a/packages.json +++ b/packages.json @@ -5324,5 +5324,18 @@ "description": "Experimental wrapper to webgl for Nim", "license": "MIT", "web": "http://stisa.space/webgl/" + }, + { + "name": "fileinput", + "url": "https://github.com/achesak/nim-fileinput", + "method": "git", + "tags": [ + "file", + "io", + "input" + ], + "description": "iterate through files and lines", + "license": "MIT", + "web": "https://github.com/achesak/nim-fileinput" } ] -- cgit v1.2.3 From e5b5797c6968695f90c19c3b3e394d05106ec3a0 Mon Sep 17 00:00:00 2001 From: Dmitry Polienko Date: Sun, 23 Oct 2016 23:33:54 +0700 Subject: Added package classy --- packages.json | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/packages.json b/packages.json index b9de5de..4c57bd0 100644 --- a/packages.json +++ b/packages.json @@ -5062,7 +5062,11 @@ { "name": "des", "description": "3DES native library for Nim", - "tags": ["library", "encryption", "crypto"], + "tags": [ + "library", + "encryption", + "crypto" + ], "license": "MIT", "web": "https://github.com/LucaWolf/des.nim", "url": "https://github.com/LucaWolf/des.nim", @@ -5114,7 +5118,9 @@ }, { "name": "faststack", - "tags": ["collection"], + "tags": [ + "collection" + ], "method": "git", "license": "MIT", "description": "Dynamically resizable data structure optimized for fast iteration.", @@ -5178,7 +5184,9 @@ "description": "Library for reading GEMF map tile stores", "web": "http://www.cgtk.co.uk/gemf", "tags": [ - "maps", "gemf", "parser" + "maps", + "gemf", + "parser" ] }, { @@ -5301,8 +5309,8 @@ "contour", "texture", "signed", - "distance", - "transform" + "distance", + "transform" ], "description": "Signed Distance Field builder for contour texturing in Nim", "license": "MIT", @@ -5337,5 +5345,18 @@ "description": "iterate through files and lines", "license": "MIT", "web": "https://github.com/achesak/nim-fileinput" + }, + { + "name": "classy", + "url": "https://github.com/nigredo-tori/classy", + "method": "git", + "tags": [ + "library", + "typeclasses", + "macros" + ], + "description": "typeclasses for Nim", + "license": "Unlicense", + "web": "https://github.com/nigredo-tori/classy" } ] -- cgit v1.2.3 From 83a0d9be6118459674c490c3bbe86a3aa326f0e3 Mon Sep 17 00:00:00 2001 From: Fabio Cevasco Date: Sun, 23 Oct 2016 20:45:55 +0200 Subject: Added MiNiM package. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4c57bd0..8e19dd6 100644 --- a/packages.json +++ b/packages.json @@ -5358,5 +5358,18 @@ "description": "typeclasses for Nim", "license": "Unlicense", "web": "https://github.com/nigredo-tori/classy" + }, + { + "name": "MiNiM", + "url": "https://github.com/h3rald/minim", + "method": "git", + "tags": [ + "concatenative", + "language", + "shell" + ], + "description": "A tiny concatenative programming language and shell.", + "license": "MIT", + "web": "https://h3rald.com/minim" } ] -- cgit v1.2.3 From 869a32736034a7a4b243e19050d412e634f7fcd4 Mon Sep 17 00:00:00 2001 From: Radu Oana Date: Tue, 25 Oct 2016 09:32:44 -0400 Subject: Add boneGPIO --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8e19dd6..712ceb3 100644 --- a/packages.json +++ b/packages.json @@ -5371,5 +5371,18 @@ "description": "A tiny concatenative programming language and shell.", "license": "MIT", "web": "https://h3rald.com/minim" + }, + { + "name": "boneGPIO", + "url": "https://github.com/xyz32/boneGPIO", + "method": "git", + "tags": [ + "library", + "GPIO", + "BeagleBone" + ], + "description": "A low level GPIO library for the BeagleBone board family", + "license": "MIT", + "web": "https://vimeo.com/134834958" } ] -- cgit v1.2.3 From b3795fed57ed5371427e9c3c31692fd2e7d3d284 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 29 Oct 2016 17:46:19 +0200 Subject: Add UI package. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 712ceb3..d652ca2 100644 --- a/packages.json +++ b/packages.json @@ -5384,5 +5384,19 @@ "description": "A low level GPIO library for the BeagleBone board family", "license": "MIT", "web": "https://vimeo.com/134834958" + }, + { + "name": "ui", + "url": "https://github.com/nim-lang/ui", + "method": "git", + "tags": [ + "library", + "GUI", + "libui", + "toolkit" + ], + "description": "A wrapper for libui", + "license": "MIT", + "web": "https://github.com/nim-lang/ui" } ] -- cgit v1.2.3 From 5bf046c2f510c676b296aec701640bbe3b4846bc Mon Sep 17 00:00:00 2001 From: konqoro Date: Mon, 31 Oct 2016 18:32:50 +0200 Subject: Add fractions package --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index d652ca2..b4f4d95 100644 --- a/packages.json +++ b/packages.json @@ -5398,5 +5398,19 @@ "description": "A wrapper for libui", "license": "MIT", "web": "https://github.com/nim-lang/ui" + }, + { + "name": "fractions", + "url": "https://github.com/konqoro/fractions", + "method": "git", + "tags": [ + "library", + "rationals", + "arithmetic", + "tuple" + ], + "description": "Implements rational number arithmetic", + "license": "MIT", + "web": "https://github.com/konqoro/fractions" } ] -- cgit v1.2.3 From 79de16a6acfb56dd1ab951bde9a6c21cfefd5bb1 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 31 Oct 2016 20:18:30 +0100 Subject: Fixes travis build and adds some new licenses to scanner. --- package_scanner.nim | 6 ++++-- packages.json | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/package_scanner.nim b/package_scanner.nim index e66417f..7d16e0b 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -30,6 +30,7 @@ const "Allegro 4 Giftware", "Apache License 2.0", "BSD", + "BSD2", "BSD3", "CC0", "GPL", @@ -43,7 +44,8 @@ const "WTFPL", "libpng", "zlib", - "ISC" + "ISC", + "Unlicense" ] VCS_TYPES = @["git", "hg"] @@ -59,7 +61,7 @@ proc canFetchNimbleRepository(name: string, urlJson: JsonNode): bool = url = urlJson.str try: - discard getContent(url, timeout=5000) + discard getContent(url, timeout=10000) except HttpRequestError, TimeoutError: echo "E: ", name, ": unable to fetch repository ", url, " ", getCurrentExceptionMsg() diff --git a/packages.json b/packages.json index b4f4d95..c34d682 100644 --- a/packages.json +++ b/packages.json @@ -5383,7 +5383,7 @@ ], "description": "A low level GPIO library for the BeagleBone board family", "license": "MIT", - "web": "https://vimeo.com/134834958" + "web": "https://github.com/xyz32/boneGPIO" }, { "name": "ui", -- cgit v1.2.3 From 56b2b2607b718ca21f3b4fbdb2e0813eff4487d7 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Tue, 8 Nov 2016 18:02:51 +0000 Subject: Added package mmgeoip --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index c34d682..f155359 100644 --- a/packages.json +++ b/packages.json @@ -5412,5 +5412,16 @@ "description": "Implements rational number arithmetic", "license": "MIT", "web": "https://github.com/konqoro/fractions" + }, + { + "name": "mmgeoip", + "url": "https://github.com/FedericoCeratto/nim-mmgeoip", + "method": "git", + "tags": [ + "geoip" + ], + "description": "MaxMind GeoIP library", + "license": "LGPLv2.1", + "web": "https://github.com/FedericoCeratto/nim-mmgeoip" } ] -- cgit v1.2.3 From 1edb97cde4fd0192c3f872b3af110026bccfff6d Mon Sep 17 00:00:00 2001 From: achesak Date: Thu, 10 Nov 2016 11:24:22 -0500 Subject: Rename geoip --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index f155359..d1eba24 100644 --- a/packages.json +++ b/packages.json @@ -3547,8 +3547,8 @@ "web": "https://github.com/achesak/nim-ris" }, { - "name": "geoip", - "url": "https://github.com/achesak/nim-geoip", + "name": "freegeoip", + "url": "https://github.com/achesak/nim-freegeoip", "method": "git", "tags": [ "IP", @@ -3557,7 +3557,7 @@ ], "description": "Retrieve info about a location from an IP address", "license": "MIT", - "web": "https://github.com/achesak/nim-geoip" + "web": "https://github.com/achesak/nim-freegeoip" }, { "name": "nimroutine", -- cgit v1.2.3 From adb0fa2bd4ed7de5b645c956d884c7d9ef0548f1 Mon Sep 17 00:00:00 2001 From: achesak Date: Fri, 11 Nov 2016 14:15:33 -0500 Subject: Add freegeoip as new entry --- packages.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index d1eba24..ddfb381 100644 --- a/packages.json +++ b/packages.json @@ -3546,6 +3546,20 @@ "license": "MIT", "web": "https://github.com/achesak/nim-ris" }, + { + "name": "geoip", + "url": "https://github.com/achesak/nim-geoip", + "method": "git", + "tags": [ + "IP", + "address", + "location", + "geolocation" + ], + "description": "Retrieve info about a location from an IP address", + "license": "MIT", + "web": "https://github.com/achesak/nim-geoip" + }, { "name": "freegeoip", "url": "https://github.com/achesak/nim-freegeoip", @@ -3553,7 +3567,8 @@ "tags": [ "IP", "address", - "location" + "location", + "geolocation" ], "description": "Retrieve info about a location from an IP address", "license": "MIT", -- cgit v1.2.3 From 0924901fbbe5156791a089a5a070412d28771499 Mon Sep 17 00:00:00 2001 From: Iwan Budi Kusnanto Date: Fri, 18 Nov 2016 11:26:49 +0700 Subject: Add libjwt Bindings for libjwt --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ddfb381..e627eec 100644 --- a/packages.json +++ b/packages.json @@ -5438,5 +5438,17 @@ "description": "MaxMind GeoIP library", "license": "LGPLv2.1", "web": "https://github.com/FedericoCeratto/nim-mmgeoip" + }, + { + "name": "libjwt", + "url": "https://github.com/nimscale/nim-libjwt", + "method": "git", + "tags": [ + "jwt", + "libjwt" + ], + "description": "Bindings for libjwt", + "license": "LGPLv2.1", + "web": "https://github.com/nimscale/nim-libjwt" } ] -- cgit v1.2.3 From e93485dcca214ee008db951ccdf92bb5653ddbf7 Mon Sep 17 00:00:00 2001 From: Rostyslav Ivasiv Date: Thu, 17 Nov 2016 13:14:54 -0800 Subject: Exdend with forestDB. Base is under https://github.com/couchbase/forestdb. Nim bind is under: https://github.com/nimscale/forestdb. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index e627eec..f40d353 100644 --- a/packages.json +++ b/packages.json @@ -5450,5 +5450,20 @@ "description": "Bindings for libjwt", "license": "LGPLv2.1", "web": "https://github.com/nimscale/nim-libjwt" + }, + { + "name": "forestdb", + "url": "https://github.com/nimscale/forestdb", + "method": "git", + "tags": [ + "library", + "bTree", + "HB+-Trie", + "db", + "forestdb" + ], + "description": "ForestDB is fast key-value storage engine that is based on a Hierarchical B+-Tree based Trie, or HB+-Trie.", + "license": "Apache License 2.0", + "web": "https://github.com/nimscale/forestdb" } ] -- cgit v1.2.3 From 4dead921a552be5c8d6294f4aa78ae1b400bdd79 Mon Sep 17 00:00:00 2001 From: Samadi van Koten Date: Fri, 25 Nov 2016 18:05:38 +0000 Subject: Add nimbox, a simple termbox wrapper --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index f40d353..031d41b 100644 --- a/packages.json +++ b/packages.json @@ -5465,5 +5465,22 @@ "description": "ForestDB is fast key-value storage engine that is based on a Hierarchical B+-Tree based Trie, or HB+-Trie.", "license": "Apache License 2.0", "web": "https://github.com/nimscale/forestdb" + }, + { + "name": "nimbox", + "url": "https://notabug.org/vktec/nimbox.git", + "method": "git", + "tags": [ + "library", + "wrapper", + "termbox", + "commandline", + "ui", + "tui", + "gui" + ], + "description": "A Rustbox-inspired termbox wrapper", + "license": "GPLv3", + "web": "https://notabug.org/vktec/nimbox" } ] -- cgit v1.2.3 From ce69bb5d76c0253966d088613036e70216cf0b87 Mon Sep 17 00:00:00 2001 From: John Scillieri Date: Fri, 25 Nov 2016 14:39:43 -0500 Subject: Update packages.json add psutil package --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index f40d353..20c0edd 100644 --- a/packages.json +++ b/packages.json @@ -5465,5 +5465,21 @@ "description": "ForestDB is fast key-value storage engine that is based on a Hierarchical B+-Tree based Trie, or HB+-Trie.", "license": "Apache License 2.0", "web": "https://github.com/nimscale/forestdb" + }, + { + "name": "psutil", + "url": "https://github.com/johnscillieri/psutil-nim", + "method": "git", + "tags": [ + "psutil", + "process", + "network", + "system", + "disk", + "cpu" + ], + "description": "psutil is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, network)", + "license": "BSD", + "web": "https://github.com/johnscillieri/psutil-nim" } ] -- cgit v1.2.3 From 912fe92fbf9bb9448687b04345cc7758b0f10cf8 Mon Sep 17 00:00:00 2001 From: Samadi van Koten Date: Sun, 27 Nov 2016 01:19:46 +0000 Subject: Add gapbuffer --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 873e6d6..2178f47 100644 --- a/packages.json +++ b/packages.json @@ -5498,5 +5498,20 @@ "description": "psutil is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, network)", "license": "BSD", "web": "https://github.com/johnscillieri/psutil-nim" + }, + { + "name": "gapbuffer", + "url": "https://notabug.org/vktec/nim-gapbuffer.git", + "method": "git", + "tags": [ + "buffer", + "seq", + "sequence", + "string", + "gap buffer" + ], + "description": "A simple gap buffer implementation", + "license": "MIT", + "web": "https://notabug.org/vktec/nim-gapbuffer" } ] -- cgit v1.2.3 From b1ced352a024986a82d6d992e90775fd99a1d64f Mon Sep 17 00:00:00 2001 From: Samadi van Koten Date: Sun, 27 Nov 2016 01:25:21 +0000 Subject: Fix license for nimbox --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 873e6d6..3e7ede2 100644 --- a/packages.json +++ b/packages.json @@ -5480,7 +5480,7 @@ "gui" ], "description": "A Rustbox-inspired termbox wrapper", - "license": "GPLv3", + "license": "MIT", "web": "https://notabug.org/vktec/nimbox" }, { -- cgit v1.2.3 From 6a76b6709d45eb1fb15e378d07a342c012f38b81 Mon Sep 17 00:00:00 2001 From: Samadi van Koten Date: Sun, 27 Nov 2016 21:40:32 +0000 Subject: Remove space from tag "gap buffer" --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 2178f47..133d81a 100644 --- a/packages.json +++ b/packages.json @@ -5508,7 +5508,7 @@ "seq", "sequence", "string", - "gap buffer" + "gapbuffer" ], "description": "A simple gap buffer implementation", "license": "MIT", -- cgit v1.2.3 From 1c86502977a43e4ab57fa55b6c548b603dba8314 Mon Sep 17 00:00:00 2001 From: Vadim Kilibaba Date: Mon, 28 Nov 2016 17:41:55 +0300 Subject: Pudge Db - it's modern key/value storage with memcached protocol support. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 477aa39..e9dbbb1 100644 --- a/packages.json +++ b/packages.json @@ -5513,5 +5513,19 @@ "description": "A simple gap buffer implementation", "license": "MIT", "web": "https://notabug.org/vktec/nim-gapbuffer" + }, + { + "name": "Pudge", + "url": "https://github.com/recoilme/pudge.git", + "method": "git", + "tags": [ + "wrapper", + "database", + "sophia", + "pudge db" + ], + "description": "Pudge Db - it's modern key/value storage with memcached protocol support. Pudge Db implements a high-level cross-platform sockets interface to sophia db.", + "license": "MIT", + "web": "https://github.com/recoilme/pudge" } ] -- cgit v1.2.3 From 3f66e4f5a4a6593de32775a005d3c8265b175b66 Mon Sep 17 00:00:00 2001 From: Vadim Kilibaba Date: Mon, 28 Nov 2016 22:10:53 +0300 Subject: pudgedb --- packages.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index e9dbbb1..1e2659d 100644 --- a/packages.json +++ b/packages.json @@ -5515,14 +5515,13 @@ "web": "https://notabug.org/vktec/nim-gapbuffer" }, { - "name": "Pudge", + "name": "pudge", "url": "https://github.com/recoilme/pudge.git", "method": "git", "tags": [ "wrapper", "database", - "sophia", - "pudge db" + "sophia" ], "description": "Pudge Db - it's modern key/value storage with memcached protocol support. Pudge Db implements a high-level cross-platform sockets interface to sophia db.", "license": "MIT", -- cgit v1.2.3 From e6aff9ddd7d2b38d589cb41d3e982a00e5f8fab0 Mon Sep 17 00:00:00 2001 From: Samadi van Koten Date: Mon, 28 Nov 2016 22:23:45 +0000 Subject: Update URL for `compiler` to point to nim-lang This isn't really an issue, since GitHub redirects, but it's confusing and a bit disconcerting to see nimble install from Araq/Nim.git instead of nim-lang/Nim.git --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 133d81a..8c6c938 100644 --- a/packages.json +++ b/packages.json @@ -1787,7 +1787,7 @@ }, { "name": "compiler", - "url": "https://github.com/Araq/Nim.git", + "url": "https://github.com/nim-lang/Nim.git", "method": "git", "tags": [ "library" -- cgit v1.2.3 From c5dcc344d89c9780e36e58ae400d57b87ef7016c Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sat, 3 Dec 2016 22:07:02 +0000 Subject: Added package etcd_client --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1d99b2b..43945b9 100644 --- a/packages.json +++ b/packages.json @@ -5526,5 +5526,17 @@ "description": "Pudge Db - it's modern key/value storage with memcached protocol support. Pudge Db implements a high-level cross-platform sockets interface to sophia db.", "license": "MIT", "web": "https://github.com/recoilme/pudge" + }, + { + "name": "etcd_client", + "url": "https://github.com/FedericoCeratto/nim-etcd-client", + "method": "git", + "tags": [ + "library", + "etcd" + ], + "description": "etcd client library", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-etcd-client" } ] -- cgit v1.2.3 From 6bbedce14691241e15a3b6ade142b86657563d03 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Sun, 4 Dec 2016 17:01:46 +0200 Subject: nim-jwt takeover --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 43945b9..1fd6200 100644 --- a/packages.json +++ b/packages.json @@ -1927,7 +1927,7 @@ }, { "name": "jwt", - "url": "https://github.com/ekarlso/nim-jwt.git", + "url": "https://github.com/yglukhov/nim-jwt.git", "method": "git", "tags": [ "library", @@ -1936,7 +1936,7 @@ ], "description": "JSON Web Tokens for Nim", "license": "MIT", - "web": "https://github.com/ekarlso/nim-jwt" + "web": "https://github.com/yglukhov/nim-jwt" }, { "name": "pythonpathlib", -- cgit v1.2.3 From 479410c4705aad9a2fd4047d7d3333fa1afa6563 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Fri, 9 Dec 2016 18:42:39 -0500 Subject: Added stb_image package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 1fd6200..ab880c7 100644 --- a/packages.json +++ b/packages.json @@ -5539,4 +5539,19 @@ "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-etcd-client" } + { + "name": "stb_image", + "url": "https://gitlab.com/define-private-public/stb_image-Nim", + "method": "git", + "tags": [ + "stb", + "image", + "graphics", + "io", + "wrapper" + ], + "description": "A wrapper for stb_image, stb_image_write, and stb_image_resize.", + "license": "Unlicense (Public Domain)", + "web": "https://gitlab.com/define-private-public/stb_image-Nim" + } ] -- cgit v1.2.3 From 6b15c5087d45dd584b737d395e0a4074d5ed4b8c Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Fri, 9 Dec 2016 22:46:43 -0500 Subject: Forgot a comma... --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index ab880c7..17d1a08 100644 --- a/packages.json +++ b/packages.json @@ -5538,7 +5538,7 @@ "description": "etcd client library", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-etcd-client" - } + }, { "name": "stb_image", "url": "https://gitlab.com/define-private-public/stb_image-Nim", -- cgit v1.2.3 From d3cc2814c654d5e8d1037a9b68b895fce747bcf5 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Mon, 12 Dec 2016 15:49:36 -0500 Subject: Added my fork of stopwatch (#437) * Added my fork of stopwatch * removed my link and changed rbmz's to mine --- packages.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 17d1a08..471b947 100644 --- a/packages.json +++ b/packages.json @@ -2960,15 +2960,18 @@ }, { "name": "stopwatch", - "url": "https://github.com/rbmz/stopwatch", + "url": "https://gitlab.com/define-private-public/stopwatch", "method": "git", "tags": [ "timer", - "benchmarking" + "timing", + "benchmarking", + "watch", + "clock" ], "description": "A simple benchmarking/timer library based on nim's lib/system/timers.nim", "license": "MIT", - "web": "https://github.com/rbmz/stopwatch" + "web": "https://gitlab.com/define-private-public/stopwatch" }, { "name": "nimFinLib", -- cgit v1.2.3 From a84be8676c8dc80d4a50135d099bdfb9142e9543 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Wed, 14 Dec 2016 12:33:42 -0500 Subject: stb_image description change (#438) * Added my fork of stopwatch * removed my link and changed rbmz's to mine * Changed the scope of my stb_image wrapper --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 471b947..f4f2da3 100644 --- a/packages.json +++ b/packages.json @@ -5553,7 +5553,7 @@ "io", "wrapper" ], - "description": "A wrapper for stb_image, stb_image_write, and stb_image_resize.", + "description": "A wrapper for stb_image and stb_image_write.", "license": "Unlicense (Public Domain)", "web": "https://gitlab.com/define-private-public/stb_image-Nim" } -- cgit v1.2.3 From 8830f760bfa3541f0b27b194981e6f6ab2b57d85 Mon Sep 17 00:00:00 2001 From: "dmitri.iourinski" Date: Thu, 15 Dec 2016 18:59:58 -0500 Subject: Added package mutableseqs --- packages.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index f4f2da3..b906641 100644 --- a/packages.json +++ b/packages.json @@ -5555,6 +5555,15 @@ ], "description": "A wrapper for stb_image and stb_image_write.", "license": "Unlicense (Public Domain)", - "web": "https://gitlab.com/define-private-public/stb_image-Nim" + "web": "https://gitlab.com/define-private-public/stb_image-Nim" + }, + { + "name": "mutableseqs", + "url": "https://github.com/iourinski/mutableseqs", + "method": "git", + "tags": [], + "description": "utilities for transforming sequences", + "license": "MIT", + "web": "https://github.com/iourinski/mutableseqs" } ] -- cgit v1.2.3 From 87e5fedae6bad18d3392d38874cb0762513d3dd5 Mon Sep 17 00:00:00 2001 From: iourinski Date: Fri, 16 Dec 2016 14:59:42 -0500 Subject: Update packages.json Added tags to mutableseqs package --- packages.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index b906641..00dec96 100644 --- a/packages.json +++ b/packages.json @@ -5561,7 +5561,10 @@ "name": "mutableseqs", "url": "https://github.com/iourinski/mutableseqs", "method": "git", - "tags": [], + "tags": [ + "sequences", + "mapreduce" + ], "description": "utilities for transforming sequences", "license": "MIT", "web": "https://github.com/iourinski/mutableseqs" -- cgit v1.2.3 From 623386febb6945570474ef76d58d2f325f289fc1 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Sat, 24 Dec 2016 14:03:59 -0500 Subject: Changed the description of stopwatch package (#442) * Added my fork of stopwatch * removed my link and changed rbmz's to mine * Changed the scope of my stb_image wrapper * updated description --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 00dec96..74b4b1f 100644 --- a/packages.json +++ b/packages.json @@ -2969,7 +2969,7 @@ "watch", "clock" ], - "description": "A simple benchmarking/timer library based on nim's lib/system/timers.nim", + "description": "A simple timing library for benchmarking code and other things.", "license": "MIT", "web": "https://gitlab.com/define-private-public/stopwatch" }, -- cgit v1.2.3 From 4da0f89a07ac82b14b8bb771a91a5e0e2b6ec928 Mon Sep 17 00:00:00 2001 From: Khaled Karam Date: Sat, 24 Dec 2016 21:04:31 +0200 Subject: add stor package (#441) * update packages.json * Change nimscale_stor to stor --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 74b4b1f..5d0bbeb 100644 --- a/packages.json +++ b/packages.json @@ -5568,5 +5568,17 @@ "description": "utilities for transforming sequences", "license": "MIT", "web": "https://github.com/iourinski/mutableseqs" + }, + { + "name": "stor", + "url": "https://github.com/nimscale/stor", + "method": "git", + "tags": [ + "storage", + "io" + ], + "description": "Efficient object storage system", + "license": "MIT", + "web": "https://github.com/nimscale/stor" } ] -- cgit v1.2.3 From 6666be5802f3bc919a4c0cb4e0709cad62a56527 Mon Sep 17 00:00:00 2001 From: Luke Diamand Date: Tue, 27 Dec 2016 20:47:31 +0000 Subject: Add linuxfb, a wrapper for the Linux framebuffer API --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 5d0bbeb..1fb61a0 100644 --- a/packages.json +++ b/packages.json @@ -5580,5 +5580,18 @@ "description": "Efficient object storage system", "license": "MIT", "web": "https://github.com/nimscale/stor" + }, + { + "name": "linuxfb", + "url": "https://github.com/luked99/linuxfb.nim", + "method": "git", + "tags": [ + "wrapper", + "graphics", + "linux" + ], + "description": "Wrapper around the Linux framebuffer driver ioctl API", + "license": "MIT", + "web": "https://github.com/luked99/linuxfb.nim" } ] -- cgit v1.2.3 From 1189866e231394cfab13f9595eb44e83c99380f4 Mon Sep 17 00:00:00 2001 From: "dmitri.iourinski" Date: Wed, 28 Dec 2016 23:14:26 -0500 Subject: simple stemmer --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 1fb61a0..29c931e 100644 --- a/packages.json +++ b/packages.json @@ -5593,5 +5593,18 @@ "description": "Wrapper around the Linux framebuffer driver ioctl API", "license": "MIT", "web": "https://github.com/luked99/linuxfb.nim" - } + }, + { + "name": "porter", + "url": "https://github.com/iourinski/porter", + "method": "git", + "tags": [ + "stemmer", + "multilanguage", + "snowball" + ], + "description": "Simple extensible implementation of Porter stemmer algorithm", + "license": "MIT", + "web": "https://github.com/iourinski/porter" + } ] -- cgit v1.2.3 From 4f8560c771803577186107d8e3517e29981c9af2 Mon Sep 17 00:00:00 2001 From: Anatoly Galiulin Date: Thu, 29 Dec 2016 13:54:36 +0700 Subject: Add nimactors library --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1fb61a0..35d6b8b 100644 --- a/packages.json +++ b/packages.json @@ -5593,5 +5593,17 @@ "description": "Wrapper around the Linux framebuffer driver ioctl API", "license": "MIT", "web": "https://github.com/luked99/linuxfb.nim" + }, + { + "name": "nimactors", + "url": "https://github.com/vegansk/nimactors", + "method": "git", + "tags": [ + "actors", + "library" + ], + "description": "Actors library for Nim inspired by akka-actors", + "license": "MIT", + "web": "https://github.com/vegansk/nimactors" } ] -- cgit v1.2.3 From 7579b076a8d0e5589e304ac85633b80e8ddc78d0 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Fri, 30 Dec 2016 14:04:01 +0200 Subject: Add kiwi package (#447) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c5c3cd4..e869f7a 100644 --- a/packages.json +++ b/packages.json @@ -5618,5 +5618,18 @@ "description": "Simple extensible implementation of Porter stemmer algorithm", "license": "MIT", "web": "https://github.com/iourinski/porter" + }, + { + "name": "kiwi", + "url": "https://github.com/yglukhov/kiwi", + "method": "git", + "tags": [ + "cassowary", + "constraint", + "solving" + ], + "description": "Cassowary constraint solving", + "license": "MIT", + "web": "https://github.com/yglukhov/kiwi" } ] -- cgit v1.2.3 From 92605a3032417d6019577d4a873d38f02423216b Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 2 Jan 2017 11:32:26 +0000 Subject: Add ArrayFireNim package Merges #446 manually. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index e869f7a..46cc6c5 100644 --- a/packages.json +++ b/packages.json @@ -5631,5 +5631,20 @@ "description": "Cassowary constraint solving", "license": "MIT", "web": "https://github.com/yglukhov/kiwi" + }, + { + "name": "ArrayFireNim", + "url": "https://github.com/bitstormGER/ArrayFire-Nim", + "method": "git", + "tags": [ + "array", + "linear", + "algebra", + "scientific", + "computing" + ], + "description": "A nim wrapper for ArrayFire", + "license": "BSD", + "web": "https://github.com/bitstormGER/ArrayFire-Nim" } ] -- cgit v1.2.3 From a24ef1386a9232837eda79385fbcea5911708ad8 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Wed, 4 Jan 2017 22:59:12 +0000 Subject: Added package statsd_client --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 46cc6c5..dd24f57 100644 --- a/packages.json +++ b/packages.json @@ -5646,5 +5646,20 @@ "description": "A nim wrapper for ArrayFire", "license": "BSD", "web": "https://github.com/bitstormGER/ArrayFire-Nim" + }, + { + "name": "statsd_client", + "url": "https://github.com/FedericoCeratto/nim-statsd-client", + "method": "git", + "tags": [ + "library", + "statsd", + "client", + "statistics", + "metrics" + ], + "description": "A simple, stateless StatsD client library", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-statsd-client" } ] -- cgit v1.2.3 From 95b50191597d0573a37c01503edf0d5b677a0171 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Fri, 6 Jan 2017 06:53:28 -0500 Subject: Add HTML5 Canvas bindings (#450) * Added my fork of stopwatch * removed my link and changed rbmz's to mine * Changed the scope of my stb_image wrapper * updated description * add HTML5 Canvas package --- packages.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index dd24f57..4bc3025 100644 --- a/packages.json +++ b/packages.json @@ -5661,5 +5661,22 @@ "description": "A simple, stateless StatsD client library", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-statsd-client" - } + }, + { + "name": "html5_canvas", + "url": "https://gitlab.com/define-private-public/HTML5-Canvas-Nim", + "method": "git", + "tags": [ + "html5", + "canvas", + "drawing", + "graphics", + "rendering", + "browser", + "javascript" + ], + "description": "HTML5 Canvas and drawing for the JavaScript backend.", + "license": "MIT", + "web": "https://gitlab.com/define-private-public/HTML5-Canvas-Nim" + }, ] -- cgit v1.2.3 From 2f6d79db9e216f35aa04da683645a9066cd86ea0 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Tue, 10 Jan 2017 11:59:32 +0100 Subject: Added Alea library --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 4bc3025..f8e8853 100644 --- a/packages.json +++ b/packages.json @@ -5679,4 +5679,19 @@ "license": "MIT", "web": "https://gitlab.com/define-private-public/HTML5-Canvas-Nim" }, + { + "name": "alea", + "url": "https://github.com/unicredit/alea", + "method": "git", + "tags": [ + "random variables", + "distributions", + "probability", + "gaussian", + "sampling" + ], + "description": "Define and compose random variables", + "license": "Apache License 2.0", + "web": "https://github.com/unicredit/alea" + } ] -- cgit v1.2.3 From fdbde8e7ab96ab2d2e05b2d4a007dbe12fecc762 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Thu, 12 Jan 2017 02:18:04 -0500 Subject: Ajax package (#452) * Added my fork of stopwatch * removed my link and changed rbmz's to mine * Changed the scope of my stb_image wrapper * updated description * add HTML5 Canvas package * Added AJAX package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f8e8853..09b0e06 100644 --- a/packages.json +++ b/packages.json @@ -5693,5 +5693,20 @@ "description": "Define and compose random variables", "license": "Apache License 2.0", "web": "https://github.com/unicredit/alea" + }, + { + "name": "ajax", + "url": "https://gitlab.com/define-private-public/AJAX-Nim", + "method": "git", + "tags": [ + "html5", + "javascript", + "ajax", + "browser", + "web" + ], + "description": "AJAX bindings for Nim's JavaScript target", + "license": "MIT", + "web": "https://gitlab.com/define-private-public/AJAX-Nim" } ] -- cgit v1.2.3 From bf7a89affb4ee8bf9b6676bdad5ef8e2022777e9 Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Mon, 16 Jan 2017 17:38:44 +0200 Subject: added nimgame2 --- packages.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 09b0e06..78ed4cf 100644 --- a/packages.json +++ b/packages.json @@ -94,10 +94,24 @@ "engine", "sdl" ], - "description": "Simple 2D game engine for Nim language.", + "description": "A simple 2D game engine for Nim language. Deprecated, use nimgame2 instead.", "license": "MIT", "web": "https://github.com/Vladar4/nimgame" }, + { + "name": "nimgame2", + "url": "https://github.com/Vladar4/nimgame2/", + "method": "git", + "tags": [ + "game", + "engine", + "sdl", + "sdl2" + ], + "description": "A simple 2D game engine for Nim language.", + "license": "MIT", + "web": "https://github.com/Vladar4/nimgame2" + }, { "name": "sfml", "url": "https://github.com/fowlmouth/nimrod-sfml/", -- cgit v1.2.3 From 36a2c12142b49f34c73e797e3ea38a9b44b9e179 Mon Sep 17 00:00:00 2001 From: Ward Date: Tue, 17 Jan 2017 00:26:16 +0800 Subject: Update packages.json --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 09b0e06..b359129 100644 --- a/packages.json +++ b/packages.json @@ -5708,5 +5708,19 @@ "description": "AJAX bindings for Nim's JavaScript target", "license": "MIT", "web": "https://gitlab.com/define-private-public/AJAX-Nim" + }, + { + "name": "winim", + "url": "https://github.com/khchen/winim", + "method": "git", + "tags": [ + "library", + "windows", + "api", + "com" + ], + "description": "Nim's Windows API and COM Library", + "license": "MIT", + "web": "https://github.com/khchen/winim" } ] -- cgit v1.2.3 From 3d1639df5f51459c9366f42e2393679aac937b19 Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Mon, 16 Jan 2017 18:36:20 +0200 Subject: added deprecated tag to nimgame --- packages.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages.json b/packages.json index 78ed4cf..c0dd11c 100644 --- a/packages.json +++ b/packages.json @@ -90,6 +90,7 @@ "url": "https://github.com/Vladar4/nimgame/", "method": "git", "tags": [ + "deprecated", "game", "engine", "sdl" -- cgit v1.2.3 From bce1ca4024cba52704aef0b5a16a61b3c24926b4 Mon Sep 17 00:00:00 2001 From: niv Date: Wed, 18 Jan 2017 17:28:56 +0100 Subject: Added package ed25519 --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index efda08a..9d34ce8 100644 --- a/packages.json +++ b/packages.json @@ -5737,5 +5737,23 @@ "description": "Nim's Windows API and COM Library", "license": "MIT", "web": "https://github.com/khchen/winim" + }, + { + "name": "ed25519", + "url": "https://github.com/niv/ed25519.nim", + "method": "git", + "tags": [ + "ed25519", + "cryptography", + "crypto", + "publickey", + "privatekey", + "signing", + "keyexchange", + "native" + ], + "description": "ed25519 key crypto bindings", + "license": "MIT", + "web": "https://github.com/niv/ed25519.nim" } ] -- cgit v1.2.3 From 3b2ce24ae66f6f95dd5baa8de51ac3af4ca1c7b4 Mon Sep 17 00:00:00 2001 From: Luke Diamand Date: Wed, 18 Jan 2017 22:26:22 +0000 Subject: Add libevdev, low-level Linux input processing --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 9d34ce8..403cdfb 100644 --- a/packages.json +++ b/packages.json @@ -5755,5 +5755,18 @@ "description": "ed25519 key crypto bindings", "license": "MIT", "web": "https://github.com/niv/ed25519.nim" + }, + { + "name": "libevdev", + "url": "https://github.com/luked99/libevdev.nim", + "method": "git", + "tags": [ + "wrapper", + "os", + "linux" + ], + "description": "Wrapper for libevdev, Linux input device processing library", + "license": "MIT", + "web": "https://github.com/luked99/libevdev.nim" } ] -- cgit v1.2.3 From 86dfb1b7ff5232b107a43cb797c6b5f5f5ac6fcf Mon Sep 17 00:00:00 2001 From: Dmitriy Fomichev Date: Mon, 23 Jan 2017 01:20:19 +0400 Subject: Added NESM - Nim's Easy Serialization Macro A tool for generating serialization code. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 403cdfb..6b797ce 100644 --- a/packages.json +++ b/packages.json @@ -5768,5 +5768,19 @@ "description": "Wrapper for libevdev, Linux input device processing library", "license": "MIT", "web": "https://github.com/luked99/libevdev.nim" + }, + { + "name": "nesm", + "url": "https://github.com/xomachine/NESM.git", + "method": "git", + "tags": [ + "metaprogramming", + "parser", + "pure", + "serialization" + ], + "description": "A macro for generating [de]serializers for given objects", + "license": "MIT", + "web": "https://xomachine.github.io/NESM/" } ] -- cgit v1.2.3 From 9601645714560ada7a65e6b3325cfaa81d48f0c3 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sun, 22 Jan 2017 21:53:26 +0000 Subject: Add sdnotify --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 403cdfb..fc90aa4 100644 --- a/packages.json +++ b/packages.json @@ -5768,5 +5768,19 @@ "description": "Wrapper for libevdev, Linux input device processing library", "license": "MIT", "web": "https://github.com/luked99/libevdev.nim" + }, + { + "name": "sdnotify", + "url": "https://github.com/FedericoCeratto/nim-sdnotify", + "method": "git", + "tags": [ + "os", + "linux", + "systemd", + "sdnotify" + ], + "description": "Systemd service notification helper", + "license": "MIT", + "web": "https://github.com/FedericoCeratto/nim-sdnotify" } ] -- cgit v1.2.3 From 4ace54818fa6492400131b99bfc3c9b7f75a8700 Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Mon, 23 Jan 2017 18:17:02 +0200 Subject: removed dash from the libtcod package name --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index fc90aa4..52b5502 100644 --- a/packages.json +++ b/packages.json @@ -69,8 +69,8 @@ "web": "https://github.com/olahol/nimrod-murmur" }, { - "name": "libtcod-nim", - "url": "https://github.com/Vladar4/libtcod-nim/", + "name": "libtcod_nim", + "url": "https://github.com/Vladar4/libtcod_nim/", "method": "git", "tags": [ "roguelike", @@ -83,7 +83,7 @@ ], "description": "Wrapper of the libtcod library for the Nim language.", "license": "zlib", - "web": "https://github.com/Vladar4/libtcod-nim" + "web": "https://github.com/Vladar4/libtcod_nim" }, { "name": "nimgame", -- cgit v1.2.3 From 989bb4cc43c8b1c2c61dd5650ba408a34107b44d Mon Sep 17 00:00:00 2001 From: Samantha Marshall Date: Fri, 27 Jan 2017 20:35:09 -0500 Subject: Added package cmd --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ddf01e5..ef0b1f7 100644 --- a/packages.json +++ b/packages.json @@ -5796,5 +5796,19 @@ "description": "Systemd service notification helper", "license": "MIT", "web": "https://github.com/FedericoCeratto/nim-sdnotify" + }, + { + "name": "cmd", + "url": "https://github.com/samdmarshall/cmd.nim", + "method": "git", + "tags": [ + "cmd", + "command", + "prompt", + "interactive" + ], + "description": "interactive command prompt", + "license": "BSD 3-Clause", + "web": "https://github.com/samdmarshall/cmd.nim" } ] -- cgit v1.2.3 From a8573e4dd5fa5761571e41c24bf20f4312588c2f Mon Sep 17 00:00:00 2001 From: Axel Pahl Date: Tue, 31 Jan 2017 10:14:26 +0100 Subject: added csvtable --- packages.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index ef0b1f7..9436128 100644 --- a/packages.json +++ b/packages.json @@ -5810,5 +5810,17 @@ "description": "interactive command prompt", "license": "BSD 3-Clause", "web": "https://github.com/samdmarshall/cmd.nim" - } + }, + { + "name": "csvtable", + "url": "https://github.com/apahl/csvtable", + "method": "git", + "tags": [ + "csv", + "table" + ], + "description": "tools for handling CSV files (comma or tab-separated) with an API similar to Python's CSVDictReader and -Writer.", + "license": "MIT", + "web": "https://github.com/apahl/csvtable" +} ] -- cgit v1.2.3 From 6221cf27269dfbd6d75d030467828ec4c35a38b7 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 31 Jan 2017 20:55:18 +0100 Subject: Travis: Use trusty to fix SSL issues with wget --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index a3b4f7c..4c2f6a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ os: - linux +distro: trusty language: c -- cgit v1.2.3 From 4dda8a3d5ddd563dea7aa4096da895049f1815aa Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 31 Jan 2017 20:55:59 +0100 Subject: Fix .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4c2f6a9..6257b0f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ os: - linux -distro: trusty +dist: trusty language: c -- cgit v1.2.3 From e0aaf9e0f85d20f6531bd9fb4452340663371496 Mon Sep 17 00:00:00 2001 From: konqoro Date: Wed, 1 Feb 2017 20:20:57 +0200 Subject: Add gnuplot package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 9436128..fc68f2d 100644 --- a/packages.json +++ b/packages.json @@ -5822,5 +5822,18 @@ "description": "tools for handling CSV files (comma or tab-separated) with an API similar to Python's CSVDictReader and -Writer.", "license": "MIT", "web": "https://github.com/apahl/csvtable" + }, + { + "name": "gnuplot", + "url": "https://github.com/dvolk/gnuplot.nim", + "method": "git", + "tags": [ + "plot", + "graphing", + "data" + ], + "description": "Nim interface to gnuplot", + "license": "MIT", + "web": "https://github.com/dvolk/gnuplot.nim" } ] -- cgit v1.2.3 From 660e8247aef97b5577be2703a8f1b470d5a47f09 Mon Sep 17 00:00:00 2001 From: Rokas Kupstys Date: Fri, 3 Feb 2017 20:55:38 +0200 Subject: Added package ustring --- packages.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index fc68f2d..d5799f3 100644 --- a/packages.json +++ b/packages.json @@ -5835,5 +5835,20 @@ "description": "Nim interface to gnuplot", "license": "MIT", "web": "https://github.com/dvolk/gnuplot.nim" -} + }, + { + "name": "ustring", + "url": "https://github.com/rokups/nim-ustring", + "method": "git", + "tags": [ + "string", + "text", + "unicode", + "uft8", + "utf-8" + ], + "description": "utf-8 string", + "license": "MIT", + "web": "https://github.com/rokups/nim-ustring" + } ] -- cgit v1.2.3 From c1d5cc05531c709c988694d6ebc10514ffe7a898 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Mon, 6 Feb 2017 15:16:53 +0100 Subject: Added package imap --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index d5799f3..fcbd18d 100644 --- a/packages.json +++ b/packages.json @@ -5850,5 +5850,17 @@ "description": "utf-8 string", "license": "MIT", "web": "https://github.com/rokups/nim-ustring" + }, + { + "name": "imap", + "url": "https://github.com/ehmry/imap", + "method": "git", + "tags": [ + "imap", + "email" + ], + "description": "IMAP client library", + "license": "GPL2", + "web": "https://github.com/ehmry/imap" } ] -- cgit v1.2.3 From 07da38b9a17974e7f96258e8a641283c10447c9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Wed, 8 Feb 2017 15:54:00 +0100 Subject: add isa: bindings for Intel Storage Acceleration library --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fcbd18d..88a69a1 100644 --- a/packages.json +++ b/packages.json @@ -5862,5 +5862,19 @@ "description": "IMAP client library", "license": "GPL2", "web": "https://github.com/ehmry/imap" + }, + { + "name": "isa", + "url": "https://github.com/nimscale/isa", + "method": "git", + "tags": [ + "erasure", + "hash", + "crypto", + "compression" + ], + "description": "Binding for Intel Storage Acceleration library", + "license": "Apache License 2.0", + "web": "https://github.com/nimscale/isa" } ] -- cgit v1.2.3 From 6637fe5831dd1e6cf8581d1f8f0e614f3765a3e5 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 8 Feb 2017 23:06:43 +0100 Subject: Added untar package --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 88a69a1..bcf6619 100644 --- a/packages.json +++ b/packages.json @@ -5876,5 +5876,21 @@ "description": "Binding for Intel Storage Acceleration library", "license": "Apache License 2.0", "web": "https://github.com/nimscale/isa" + }, + { + "name": "untar", + "url": "https://github.com/dom96/untar", + "method": "git", + "tags": [ + "library", + "tar", + "gz", + "compression", + "archive", + "decompression" + ], + "description": "Library for decompressing tar.gz files.", + "license": "MIT", + "web": "https://github.com/dom96/untar" } ] -- cgit v1.2.3 From 9f8394b6faa84bbf4acd969200f88ce835954631 Mon Sep 17 00:00:00 2001 From: Vladislav Vorobiev Date: Thu, 9 Feb 2017 13:32:14 +0300 Subject: Rename package registry to winregistry Fixes name clashing with stdlib_registry --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index bcf6619..b9ebf22 100644 --- a/packages.json +++ b/packages.json @@ -4926,7 +4926,7 @@ "web": "https://github.com/cheatfate/asyncpg" }, { - "name": "registry", + "name": "winregistry", "description": "Deal with Windows Registry from Nim.", "tags": [ "registry", -- cgit v1.2.3 From 519f9de4d56766014cc09fb9b64765168b17836d Mon Sep 17 00:00:00 2001 From: Kean Sum Ooi Date: Thu, 9 Feb 2017 18:34:54 +0800 Subject: Added dpdk --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index bcf6619..8812f71 100644 --- a/packages.json +++ b/packages.json @@ -5892,5 +5892,19 @@ "description": "Library for decompressing tar.gz files.", "license": "MIT", "web": "https://github.com/dom96/untar" + }, + { + "name": "dpdk", + "url": "https://github.com/nimscale/dpdk", + "method": "git", + "tags": [ + "library", + "dpdk", + "packet", + "processing" + ], + "description": "Library for fast packet processing", + "license": "Apache License 2.0", + "web": "http://dpdk.org/" } ] -- cgit v1.2.3 From b030f368ef97e1f0aa85743ddeba006844467249 Mon Sep 17 00:00:00 2001 From: Euan Torano Date: Sun, 12 Feb 2017 16:25:57 +0000 Subject: Added package serialport --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index af84435..2a64f38 100644 --- a/packages.json +++ b/packages.json @@ -5906,5 +5906,18 @@ "description": "Library for fast packet processing", "license": "Apache License 2.0", "web": "http://dpdk.org/" + }, + { + "name": "serialport", + "url": "https://github.com/euantorano/serialport.nim", + "method": "git", + "tags": [ + "serial", + "rs232", + "io" + ], + "description": "A library to operate serial ports using pure Nim.", + "license": "BSD3", + "web": "https://github.com/euantorano/serialport.nim" } ] -- cgit v1.2.3 From 8ba80d52227bd423f77d632bcba225d1819978b5 Mon Sep 17 00:00:00 2001 From: Euan T Date: Sun, 12 Feb 2017 16:31:06 +0000 Subject: Change name of `serialport` to `libserialport` --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 2a64f38..a3f061b 100644 --- a/packages.json +++ b/packages.json @@ -5908,7 +5908,7 @@ "web": "http://dpdk.org/" }, { - "name": "serialport", + "name": "libserialport", "url": "https://github.com/euantorano/serialport.nim", "method": "git", "tags": [ -- cgit v1.2.3 From 46f2216d1747b5dc6a14c586193daaecd1e07f78 Mon Sep 17 00:00:00 2001 From: qqtop Date: Sun, 12 Feb 2017 19:13:45 +0000 Subject: Add package NimCx (#466) * Added package NimCx * Update packages.json --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index a3f061b..0acd794 100644 --- a/packages.json +++ b/packages.json @@ -5893,6 +5893,18 @@ "license": "MIT", "web": "https://github.com/dom96/untar" }, + { + "name": "nimcx", + "url": "https://github.com/qqtop/nimcx", + "method": "git", + "tags": [ + "library", + "linux" + ], + "description": "Color and utilities library for linux terminal.", + "license": "MIT", + "web": "https://github.com/qqtop/nimcx" + }, { "name": "dpdk", "url": "https://github.com/nimscale/dpdk", -- cgit v1.2.3 From 11206fd2b35fde9933059964713a460728456bf2 Mon Sep 17 00:00:00 2001 From: Rostyslav Ivasiv Date: Mon, 13 Feb 2017 17:08:53 +0200 Subject: Added SPDK set of tools and libraries. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 0acd794..fdd508c 100644 --- a/packages.json +++ b/packages.json @@ -5931,5 +5931,20 @@ "description": "A library to operate serial ports using pure Nim.", "license": "BSD3", "web": "https://github.com/euantorano/serialport.nim" + }, + { + "name": "libspdk", + "url": "https://github.com/nimscale/spdk.git", + "method": "git", + "tags": [ + "library", + "SSD", + "NVME", + "io", + "storage" + ], + "description": "The Storage Performance Development Kit(SPDK) provides a set of tools and libraries for writing high performance, scalable, user-mode storage applications.", + "license": "MIT", + "web": "https://github.com/nimscale/spdk.git" } ] -- cgit v1.2.3 From 25df0f82f489074ed7882110aa31e3e0ce79e68c Mon Sep 17 00:00:00 2001 From: Fabian Keller Date: Mon, 13 Feb 2017 20:42:58 +0100 Subject: added nimdata --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index fdd508c..28a882f 100644 --- a/packages.json +++ b/packages.json @@ -5946,5 +5946,16 @@ "description": "The Storage Performance Development Kit(SPDK) provides a set of tools and libraries for writing high performance, scalable, user-mode storage applications.", "license": "MIT", "web": "https://github.com/nimscale/spdk.git" + }, + { + "name": "NimData", + "url": "https://github.com/bluenote10/NimData", + "method": "git", + "tags": [ + "dataframe" + ], + "description": "DataFrame API enabling fast out-of-core data analytics", + "license": "MIT", + "web": "https://github.com/bluenote10/NimData" } ] -- cgit v1.2.3 From 044dc5e31f63594276acce2d0a4efc381a9d198d Mon Sep 17 00:00:00 2001 From: Fabian Keller Date: Mon, 13 Feb 2017 21:11:00 +0100 Subject: added library tag --- packages.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages.json b/packages.json index 28a882f..87bbb7d 100644 --- a/packages.json +++ b/packages.json @@ -5952,6 +5952,7 @@ "url": "https://github.com/bluenote10/NimData", "method": "git", "tags": [ + "library", "dataframe" ], "description": "DataFrame API enabling fast out-of-core data analytics", -- cgit v1.2.3 From 0c9d410bbef23a14aa9d086810038b7861ec68e8 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Tue, 14 Feb 2017 18:42:05 +0000 Subject: Add testrunner --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 87bbb7d..24f229b 100644 --- a/packages.json +++ b/packages.json @@ -5958,5 +5958,20 @@ "description": "DataFrame API enabling fast out-of-core data analytics", "license": "MIT", "web": "https://github.com/bluenote10/NimData" + }, + { + "name": "testrunner", + "url": "https://github.com/FedericoCeratto/nim-testrunner", + "method": "git", + "tags": [ + "test", + "tests", + "unittest", + "utility", + "tdd" + ], + "description": "Test runner with file monitoring and desktop notification capabilities", + "license": "GPLv3", + "web": "https://github.com/FedericoCeratto/nim-testrunner" } ] -- cgit v1.2.3 From fcd882b648708a940a80de06478813e066ca09a4 Mon Sep 17 00:00:00 2001 From: Rostyslav Ivasiv Date: Sat, 18 Feb 2017 15:57:56 +0200 Subject: Corrected SPDK library name to more appropriate one. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index fdd508c..fd18ea5 100644 --- a/packages.json +++ b/packages.json @@ -5933,7 +5933,7 @@ "web": "https://github.com/euantorano/serialport.nim" }, { - "name": "libspdk", + "name": "spdk", "url": "https://github.com/nimscale/spdk.git", "method": "git", "tags": [ -- cgit v1.2.3 From 32ecb6b463392820a089da17f50bc717e084ebe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Sun, 19 Feb 2017 22:53:50 +0100 Subject: Add reactorfuse --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 27bc476..40906e9 100644 --- a/packages.json +++ b/packages.json @@ -5973,5 +5973,17 @@ "description": "Test runner with file monitoring and desktop notification capabilities", "license": "GPLv3", "web": "https://github.com/FedericoCeratto/nim-testrunner" + }, + { + "name": "reactorfuse", + "url": "https://github.com/zielmicha/reactorfuse", + "method": "git", + "tags": [ + "filesystem", + "fuse" + ], + "description": "Filesystem in userspace (FUSE) for Nim (for reactor.nim library)", + "license": "MIT", + "web": "https://github.com/zielmicha/reactorfuse" } ] -- cgit v1.2.3 From c2b84b09c9ecc2dec8d6c0aa055ee8806e2960a1 Mon Sep 17 00:00:00 2001 From: Jeff Ciesielski Date: Tue, 21 Feb 2017 22:52:47 -0500 Subject: Added package nimr --- packages.json | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/packages.json b/packages.json index 40906e9..a879b7e 100644 --- a/packages.json +++ b/packages.json @@ -5898,12 +5898,12 @@ "url": "https://github.com/qqtop/nimcx", "method": "git", "tags": [ - "library", - "linux" + "library", + "linux" ], - "description": "Color and utilities library for linux terminal.", - "license": "MIT", - "web": "https://github.com/qqtop/nimcx" + "description": "Color and utilities library for linux terminal.", + "license": "MIT", + "web": "https://github.com/qqtop/nimcx" }, { "name": "dpdk", @@ -5985,5 +5985,17 @@ "description": "Filesystem in userspace (FUSE) for Nim (for reactor.nim library)", "license": "MIT", "web": "https://github.com/zielmicha/reactorfuse" + }, + { + "name": "nimr", + "url": "https://github.com/Jeff-Ciesielski/nimr", + "method": "git", + "tags": [ + "script", + "utils" + ], + "description": "Helper to run nim code like a script", + "license": "MIT", + "web": "https://github.com/Jeff-Ciesielski/nimr" } ] -- cgit v1.2.3 From 171c1e90b30004e338abb7f9fe4f54aeb76de242 Mon Sep 17 00:00:00 2001 From: niv Date: Thu, 23 Feb 2017 15:54:18 +0100 Subject: Added package neverwinter --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index a879b7e..9f41314 100644 --- a/packages.json +++ b/packages.json @@ -5997,5 +5997,23 @@ "description": "Helper to run nim code like a script", "license": "MIT", "web": "https://github.com/Jeff-Ciesielski/nimr" + }, + { + "name": "neverwinter", + "url": "https://github.com/niv/neverwinter.nim", + "method": "git", + "tags": [ + "nwn", + "neverwinternights", + "neverwinter", + "game", + "bioware", + "fileformats", + "reader", + "writer" + ], + "description": "Neverwinter Nights 1 data accessor library", + "license": "MIT", + "web": "https://github.com/niv/neverwinter.nim" } ] -- cgit v1.2.3 From bff07b572ca77737c4e426989cf038675f628768 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 25 Feb 2017 21:18:30 +0100 Subject: Add more tags to sha2 package. --- packages.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 9f41314..956a74d 100644 --- a/packages.json +++ b/packages.json @@ -3325,7 +3325,10 @@ "hash", "crypto", "library", - "sha2" + "sha256", + "sha224", + "sha384", + "sha512" ], "description": "Secure Hash Algorithm - 2, [224, 256, 384, and 512 bits]", "license": "MIT", -- cgit v1.2.3 From 602ffa593bd79dba87fd808611318c0b546d689a Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 27 Feb 2017 23:49:11 +0100 Subject: Fixes #478. --- packages.json | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/packages.json b/packages.json index 956a74d..d193e6d 100644 --- a/packages.json +++ b/packages.json @@ -5712,21 +5712,6 @@ "license": "Apache License 2.0", "web": "https://github.com/unicredit/alea" }, - { - "name": "ajax", - "url": "https://gitlab.com/define-private-public/AJAX-Nim", - "method": "git", - "tags": [ - "html5", - "javascript", - "ajax", - "browser", - "web" - ], - "description": "AJAX bindings for Nim's JavaScript target", - "license": "MIT", - "web": "https://gitlab.com/define-private-public/AJAX-Nim" - }, { "name": "winim", "url": "https://github.com/khchen/winim", -- cgit v1.2.3 From 13f7e8698e152144b7f5965296b707a370e2e7a3 Mon Sep 17 00:00:00 2001 From: stisa Date: Wed, 1 Mar 2017 17:21:59 +0100 Subject: add snail and websockets --- packages.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages.json b/packages.json index d193e6d..6e59a01 100644 --- a/packages.json +++ b/packages.json @@ -6003,5 +6003,32 @@ "description": "Neverwinter Nights 1 data accessor library", "license": "MIT", "web": "https://github.com/niv/neverwinter.nim" + }, + { + "name": "snail", + "url": "https://github.com/stisa/snail", + "method": "git", + "tags": [ + "js", + "matrix", + "linear algebra" + ], + "description": "Simple linear algebra for nim. Js too.", + "license": "MIT", + "web": "http://stisa.space/snail/" + }, + { + "name": "websockets", + "url": "https://github.com/stisa/websockets", + "method": "git", + "tags": [ + "js", + "javascripts", + "ws", + "websockets" + ], + "description": "Websockets wrapper for nim js backend.", + "license": "MIT", + "web": "http://stisa.space/websockets/" } ] -- cgit v1.2.3 From 77758ce0abde3150e2499cb118ad5d893ccceca3 Mon Sep 17 00:00:00 2001 From: stisa Date: Thu, 2 Mar 2017 10:19:45 +0100 Subject: websockets->jswebsockets --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 6e59a01..e198c05 100644 --- a/packages.json +++ b/packages.json @@ -6018,8 +6018,8 @@ "web": "http://stisa.space/snail/" }, { - "name": "websockets", - "url": "https://github.com/stisa/websockets", + "name": "jswebsockets", + "url": "https://github.com/stisa/jswebsockets", "method": "git", "tags": [ "js", @@ -6029,6 +6029,6 @@ ], "description": "Websockets wrapper for nim js backend.", "license": "MIT", - "web": "http://stisa.space/websockets/" + "web": "http://stisa.space/jswebsockets/" } ] -- cgit v1.2.3 From c889b1045d9a21ef81edea6d657bfd6bfff53815 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sat, 4 Mar 2017 20:29:18 +0000 Subject: Add morelogging library --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index e198c05..562053b 100644 --- a/packages.json +++ b/packages.json @@ -6030,5 +6030,20 @@ "description": "Websockets wrapper for nim js backend.", "license": "MIT", "web": "http://stisa.space/jswebsockets/" + }, + { + "name": "morelogging", + "url": "https://github.com/FedericoCeratto/nim-morelogging", + "method": "git", + "tags": [ + "log", + "logging", + "library", + "systemd", + "journald" + ], + "description": "Logging library with support for async IO, multithreading, Journald.", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-morelogging" } ] -- cgit v1.2.3 From 9347ead988ec5e4f43d03fd5c63c33fdfb1512bb Mon Sep 17 00:00:00 2001 From: stisa Date: Sun, 5 Mar 2017 20:40:53 +0100 Subject: add ajax --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 562053b..4282adc 100644 --- a/packages.json +++ b/packages.json @@ -6045,5 +6045,19 @@ "description": "Logging library with support for async IO, multithreading, Journald.", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-morelogging" + }, + { + "name": "ajax", + "url": "https://github.com/stisa/ajax", + "method": "git", + "tags": [ + "js", + "javascripts", + "ajax", + "xmlhttprequest" + ], + "description": "AJAX wrapper for nim js backend.", + "license": "MIT", + "web": "http://stisa.space/ajax/" } ] -- cgit v1.2.3 From 0aa731182b640bf83197cc8caf76f2c05445e690 Mon Sep 17 00:00:00 2001 From: Euan Torano Date: Mon, 6 Mar 2017 20:30:30 +0000 Subject: Added package recaptcha --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4282adc..f049a01 100644 --- a/packages.json +++ b/packages.json @@ -6059,5 +6059,17 @@ "description": "AJAX wrapper for nim js backend.", "license": "MIT", "web": "http://stisa.space/ajax/" + }, + { + "name": "recaptcha", + "url": "https://github.com/euantorano/recaptcha.nim", + "method": "git", + "tags": [ + "recaptcha", + "captcha" + ], + "description": "reCAPTCHA support for Nim, supporting rendering a capctcha and verifying a user's response.", + "license": "BSD3", + "web": "https://github.com/euantorano/recaptcha.nim" } ] -- cgit v1.2.3