mirror of https://github.com/status-im/nim-eth.git
16 lines
342 B
Plaintext
16 lines
342 B
Plaintext
|
version = "1.0.0"
|
||
|
author = "Status Research & Development GmbH"
|
||
|
description = "Ethereum Common library"
|
||
|
license = "MIT"
|
||
|
skipDirs = @["tests"]
|
||
|
|
||
|
requires "nim > 0.18.0",
|
||
|
"nimcrypto",
|
||
|
"ranges",
|
||
|
"stint",
|
||
|
"byteutils"
|
||
|
|
||
|
task test, "run tests":
|
||
|
cd "tests"
|
||
|
exec "nim c -r test_common"
|