summary refs log tree commit diff stats
path: root/nre.nimble
diff options
context:
space:
mode:
authorFlaviu Tamas <tamasflaviu@gmail.com>2015-01-10 14:11:43 -0500
committerFlaviu Tamas <tamasflaviu@gmail.com>2015-01-10 14:11:43 -0500
commit2db1a54710db4684f5f816ea4541f0998c11de9e (patch)
tree53675f8d3930a8acf937393d3cc0b61af334a2ae /nre.nimble
parent613d12c7bfc9e191c1dfcf697d55dbe434e47d06 (diff)
downloadNim-2db1a54710db4684f5f816ea4541f0998c11de9e.tar.gz
Implement regex execution
Diffstat (limited to 'nre.nimble')
-rw-r--r--nre.nimble4
1 files changed, 3 insertions, 1 deletions
diff --git a/nre.nimble b/nre.nimble
index 74e982222..48cabc177 100644
--- a/nre.nimble
+++ b/nre.nimble
@@ -1,9 +1,11 @@
 [Package]
 name        = "nre"
+author      = "Flaviu Tamas"
 version     = "0.1.0"
 description = "Yet another PCRE library"
 license     = "MIT"
 srcDir      = "src"
 
 [Deps]
-Requires: "nim >= 0.10.1"
+Requires: "nim >= 0.10.0"
+Requires: "optional_t >= 1.0"