mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-02-23 20:48:25 +00:00
* Update dependencies for Nim 2.x * Use refc as memory management and disable styleCheck because of testutils * Fix ambiguous import * Change Address init because eth introduced Byte20 type for Address type * use uint64 instead of init64 * Rename properties after a change in eth to be closer to the spec * Use Opt type instead of Option * Add 2.0.12 version to CI * Increment the version * Update the Nim version in CI * Update to Nim 2.0.14 * Use Nim 2.x commit hash for contractabi * Remove stable on CI because we don't want to test with Nim 2.2.x * Update Nim minimum version to 2.0.14 * fix version deps * remove fq typename * Add debug flag * Define maximumtaggedversions * Update readme --------- Co-authored-by: Eric <5089238+emizzle@users.noreply.github.com>
21 lines
605 B
Nim
21 lines
605 B
Nim
version = "1.1.0"
|
|
author = "Nim Ethers Authors"
|
|
description = "library for interacting with Ethereum"
|
|
license = "MIT"
|
|
|
|
requires "nim >= 2.0.14"
|
|
requires "chronicles >= 0.10.3 & < 0.11.0"
|
|
requires "chronos >= 4.0.4 & < 4.1.0"
|
|
requires "contractabi >= 0.7.0 & < 0.8.0"
|
|
requires "questionable >= 0.10.2 & < 0.11.0"
|
|
requires "json_rpc >= 0.5.0 & < 0.6.0"
|
|
requires "serde >= 1.2.1 & < 1.3.0"
|
|
requires "stint >= 0.8.1 & < 0.9.0"
|
|
requires "stew >= 0.2.0 & < 0.3.0"
|
|
requires "eth >= 0.5.0 & < 0.6.0"
|
|
|
|
task test, "Run the test suite":
|
|
# exec "nimble install -d -y"
|
|
withDir "testmodule":
|
|
exec "nimble test"
|