nim-eth-keys/eth_keys.nimble

28 lines
838 B
Plaintext
Raw Normal View History

packageName = "eth_keys"
2018-02-08 09:51:13 +00:00
version = "0.0.1"
author = "Status Research & Development GmbH"
description = "A reimplementation in pure Nim of eth-keys, the common API for Ethereum key operations."
2018-03-02 10:57:43 +00:00
license = "Apache License 2.0 or MIT"
2018-02-08 09:51:13 +00:00
srcDir = "src"
### Dependencies
2018-03-02 09:11:55 +00:00
requires "nim >= 0.18.0", "keccak_tiny >= 0.1.0", "ttmath >= 0.1.0", "nimSHA2", "secp256k1"
2018-02-08 09:51:13 +00:00
proc test(name: string, lang: string = "cpp") =
2018-02-08 09:51:13 +00:00
if not dirExists "build":
mkDir "build"
2018-02-08 09:51:13 +00:00
if not dirExists "nimcache":
mkDir "nimcache"
--run
--nimcache: "nimcache"
switch("out", ("./build/" & name))
setCommand lang, "tests/" & name & ".nim"
task test, "Run all tests - libsecp256k1 backend":
test "all_tests"
task test_backend_native, "Run all tests - pure Nim backend":
switch("define", "backend_native")
2018-02-27 17:41:16 +00:00
test "all_tests"