diff options
author | Flaviu Tamas <tamasflaviu@gmail.com> | 2015-01-10 14:11:43 -0500 |
---|---|---|
committer | Flaviu Tamas <tamasflaviu@gmail.com> | 2015-01-10 14:11:43 -0500 |
commit | 2db1a54710db4684f5f816ea4541f0998c11de9e (patch) | |
tree | 53675f8d3930a8acf937393d3cc0b61af334a2ae /nre.nimble | |
parent | 613d12c7bfc9e191c1dfcf697d55dbe434e47d06 (diff) | |
download | Nim-2db1a54710db4684f5f816ea4541f0998c11de9e.tar.gz |
Implement regex execution
Diffstat (limited to 'nre.nimble')
-rw-r--r-- | nre.nimble | 4 |
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" |