Skip to content

Commit c6b860c

Browse files
authoredJul 17, 2024
chore: rename nim_peerdas_kzg -> nim_eth_kzg (#102)
* nim_peerdas_kzg -> nim_eth_kzg * update two other files
1 parent bbcd97a commit c6b860c

11 files changed

+9
-9
lines changed
 

‎Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎bindings/nim/nim_code/nim_peerdas_kzg.nimble ‎bindings/nim/nim_code/nim_eth_kzg.nimble

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ version = "0.3.0"
55
# x-release-please-end
66

77
author = "Kevaundray Wedderburn"
8-
description = "PeerDas KZG bindings"
8+
description = "KZG bindings for DAS functionality"
99
license = "MIT"
1010

11-
import nim_peerdas_kzg/build_utils
11+
import nim_eth_kzg/build_utils
1212

1313
const staticLibInstallDir = getInstallDir()
1414

1515
installDirs = @[
16-
"nim_peerdas_kzg",
16+
"nim_eth_kzg",
1717
staticLibInstallDir,
1818
]
1919

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
switch("path", "$projectDir/../nim_peerdas_kzg")
1+
switch("path", "$projectDir/../nim_eth_kzg")

‎bindings/nim/nim_code/tests/test_yaml.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import
33
std/[os, sequtils, strutils, streams],
44
unittest2, yaml, results
55

6-
import nim_peerdas_kzg
6+
import nim_eth_kzg
77

88
# Use our own fromHex implementation so that we can
99
# raise an error when the hex string is not the same

‎bindings/nim/rust_code/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "nim_peerdas_kzg"
2+
name = "nim_eth_kzg"
33
version = { workspace = true }
44
authors = { workspace = true }
55
edition = { workspace = true }

‎bindings/nim/rust_code/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::env;
22
use std::path::PathBuf;
33

44
/// The path where the generated header file will be written relative to bindings folder.
5-
const PATH_FOR_NIM_HEADER: &str = "nim/nim_code/nim_peerdas_kzg/header.nim";
5+
const PATH_FOR_NIM_HEADER: &str = "nim/nim_code/nim_eth_kzg/header.nim";
66

77
fn main() {
88
println!(

‎release-please-config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"path": "Cargo.toml",
4646
"jsonpath": "$.workspace.dependencies.rust_eth_kzg.version"
4747
},
48-
"bindings/nim/nim_code/nim_peerdas_kzg/nim_peerdas_kzg.nimble",
48+
"bindings/nim/nim_code/nim_eth_kzg/nim_eth_kzg.nimble",
4949
"bindings/java/java_code/build.gradle",
5050
{
5151
"type": "xml",

0 commit comments

Comments
 (0)