nim-ethers/ethers.nimble

16 lines
391 B
Plaintext
Raw Normal View History

2022-01-17 16:04:14 +00:00
version = "0.1.0"
author = "Nim Ethers Authors"
description = "library for interacting with Ethereum"
license = "MIT"
requires "chronos >= 3.0.0 & < 4.0.0"
requires "contractabi >= 0.4.0 & < 0.5.0"
2022-01-18 10:40:07 +00:00
requires "questionable >= 0.10.2 & < 0.11.0"
2022-01-18 11:10:20 +00:00
requires "json_rpc"
2022-01-18 10:40:07 +00:00
requires "stew"
2022-01-17 16:04:14 +00:00
task test, "Run the test suite":
exec "nimble install -d -y"
withDir "testmodule":
exec "nimble test"