nimbus-eth2/beacon_chain.nimble

34 lines
897 B
Plaintext
Raw Normal View History

2018-07-20 13:46:03 +00:00
packageName = "beacon_chain"
version = "0.0.1"
author = "Status Research & Development GmbH"
2018-09-26 16:26:39 +00:00
description = "Eth2.0 research implementation of the beacon chain"
2018-07-20 13:46:03 +00:00
license = "MIT or Apache License 2.0"
installDirs = @["beacon_chain"]
bin = @["beacon_chain/beacon_node"]
2018-07-20 13:46:03 +00:00
### Dependencies
2018-09-26 16:26:39 +00:00
requires "nim >= 0.18.0",
"eth_common",
"eth_keys",
2018-09-26 16:26:39 +00:00
"nimcrypto",
"https://github.com/status-im/nim-milagro-crypto#master",
"eth_p2p",
"chronicles",
"confutils",
"serialization",
"json_serialization",
"ranges"
2018-07-20 13:46:03 +00:00
### Helper functions
proc test(name: string, defaultLang = "c") =
# TODO, don't forget to change defaultLang to `cpp` if the project requires C++
if not dirExists "build":
mkDir "build"
--run
switch("out", ("./build/" & name))
setCommand defaultLang, "tests/" & name & ".nim"
### tasks
task test, "Run all tests":
test "all_tests"