Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use stand-alone results library #432

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bindings/nim/kzg.nim
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

import
std/[streams, strutils],
stew/[results, byteutils],
stew/byteutils,
results,
./kzg_abi

export
Expand Down
2 changes: 1 addition & 1 deletion bindings/nim/kzg_ex.nim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
############################################################

import
stew/results,
results,
./kzg

export
Expand Down
5 changes: 3 additions & 2 deletions kzg4844.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mode = ScriptMode.Verbose
##################################################

packageName = "kzg4844"
version = "0.1.0"
version = "1.0.1"
arnetheduck marked this conversation as resolved.
Show resolved Hide resolved
author = "Andri Lim"
description = "Nim wrapper of c-kzg-4844"
license = "Apache License 2.0"
Expand All @@ -24,7 +24,8 @@ installDirs = @[
"bindings/nim"
]

requires "nim >= 1.2.0",
requires "nim >= 1.6.0",
"results",
"stew"

##################################################
Expand Down
Loading