use stand-alone `results` library
It hasn't been part of `stew` for a good while now - also fix version number in nimble file.
This commit is contained in:
parent
98c419eed5
commit
b8131e3d64
|
@ -4,7 +4,8 @@
|
||||||
|
|
||||||
import
|
import
|
||||||
std/[streams, strutils],
|
std/[streams, strutils],
|
||||||
stew/[results, byteutils],
|
stew/byteutils,
|
||||||
|
results,
|
||||||
./kzg_abi
|
./kzg_abi
|
||||||
|
|
||||||
export
|
export
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
############################################################
|
############################################################
|
||||||
|
|
||||||
import
|
import
|
||||||
stew/results,
|
results,
|
||||||
./kzg
|
./kzg
|
||||||
|
|
||||||
export
|
export
|
||||||
|
|
|
@ -5,7 +5,7 @@ mode = ScriptMode.Verbose
|
||||||
##################################################
|
##################################################
|
||||||
|
|
||||||
packageName = "kzg4844"
|
packageName = "kzg4844"
|
||||||
version = "0.1.0"
|
version = "1.0.1"
|
||||||
author = "Andri Lim"
|
author = "Andri Lim"
|
||||||
description = "Nim wrapper of c-kzg-4844"
|
description = "Nim wrapper of c-kzg-4844"
|
||||||
license = "Apache License 2.0"
|
license = "Apache License 2.0"
|
||||||
|
@ -24,7 +24,8 @@ installDirs = @[
|
||||||
"bindings/nim"
|
"bindings/nim"
|
||||||
]
|
]
|
||||||
|
|
||||||
requires "nim >= 1.2.0",
|
requires "nim >= 1.6.0",
|
||||||
|
"results",
|
||||||
"stew"
|
"stew"
|
||||||
|
|
||||||
##################################################
|
##################################################
|
||||||
|
|
Loading…
Reference in New Issue