mirror of https://github.com/status-im/nim-rlp.git
rlp_inspect: simple CLI tool for debugging RLP problems
This commit is contained in:
parent
82c064946c
commit
44e10db59a
|
@ -0,0 +1,7 @@
|
|||
import os, ../rlp
|
||||
|
||||
if paramCount() > 0:
|
||||
echo rlpFromHex(paramStr(1)).inspect
|
||||
else:
|
||||
echo "Please provide an hex-encoded RLP string as an input"
|
||||
|
|
@ -5,7 +5,8 @@ version = "1.0.1"
|
|||
author = "Status Research & Development GmbH"
|
||||
description = "RLP serialization library for Nim"
|
||||
license = "Apache License 2.0"
|
||||
skipDirs = @["tests"]
|
||||
skipDirs = @["bin", "tests"]
|
||||
bin = @["bin/rlp_inspect"]
|
||||
|
||||
requires "nim >= 0.17.0",
|
||||
"ranges"
|
||||
|
|
Loading…
Reference in New Issue