nim-keccak-tiny/keccak_tiny.nimble
2018-02-26 14:05:47 +02:00

22 lines
463 B
Nim

mode = ScriptMode.Verbose
packageName = "keccak_tiny"
version = "0.2.0"
author = "Zahary Karadjov"
description = "A wrapper for the keccak-tiny C library"
license = "Apache2"
skipDirs = @["tests"]
requires "nim >= 0.17.0", "https://github.com/status-im/nim-ranges >= 0.0.1"
proc configForTests() =
--hints: off
--debuginfo
--path: "."
--run
task test, "run CPU tests":
configForTests()
setCommand "c", "tests/all.nim"