Add explicit dependency on isaac >= 0.1.2

Something depends on isaac 0.1.0, but that version doesn't compile on Nim 0.16
and above. Until the transitive dependancy is updated, ask for at least 0.1.2.
This commit is contained in:
Jonathan Bernard 2017-02-21 11:18:12 -06:00
parent 78a35b6478
commit 15708cebdf
2 changed files with 3 additions and 3 deletions

View File

@ -380,7 +380,7 @@ Options:
let now = getLocalTime(getTime()) let now = getLocalTime(getTime())
# Parse arguments # Parse arguments
let args = docopt(doc, version = "ptk 0.9.0") let args = docopt(doc, version = "ptk 0.10.0")
if args["--echo-args"]: echo $args if args["--echo-args"]: echo $args

View File

@ -1,6 +1,6 @@
# Package # Package
version = "0.9.0" version = "0.10.0"
author = "Jonathan Bernard" author = "Jonathan Bernard"
description = "Personal Time Keeper" description = "Personal Time Keeper"
license = "MIT" license = "MIT"
@ -8,5 +8,5 @@ bin = @["ptk"]
# Dependencies # Dependencies
requires @["nim >= 0.15.0", "docopt >= 0.6.4", "uuids", "langutils", "tempfile", "timeutils >= 0.2.0"] requires @["nim >= 0.15.0", "docopt >= 0.6.4", "uuids", "langutils", "tempfile", "timeutils >= 0.2.0", "isaac >= 0.1.2"]