/ eth_keyfile.nimble
eth_keyfile.nimble
 1  packageName   = "eth_keyfile"
 2  version       = "0.1.1"
 3  author        = "Status Research & Development GmbH"
 4  description   = "Tools for handling the encrypted keyfile format used to store Ethereum private keys"
 5  license       = "Apache License 2.0 or MIT"
 6  skipDirs      = @["tests", "Nim", "nim"]
 7  
 8  ### Dependencies
 9  
10  requires "nim > 0.18.0",
11           "nimcrypto",
12           "eth_keys"
13  
14  task test, "Run all tests":
15    exec "nim c -r tests/testuuid"
16    exec "nim c -r tests/testkeyfile"
17    exec "nim c -r -d:release tests/testuuid"
18    exec "nim c -r -d:release tests/testkeyfile"