diff --git a/Cargo.lock b/Cargo.lock index 518b9bf..7d7adbe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,6 +103,23 @@ version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" +[[package]] +name = "kzg-rs" +version = "0.1.0" +dependencies = [ + "bls12_381", + "glob", + "hex", + "once_cell", + "regex", + "serde", + "serde_derive", + "serde_json", + "serde_yaml", + "sp1-derive", + "subtle", +] + [[package]] name = "memchr" version = "2.7.4" @@ -243,23 +260,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "sp1-kzg" -version = "0.1.0" -dependencies = [ - "bls12_381", - "glob", - "hex", - "once_cell", - "regex", - "serde", - "serde_derive", - "serde_json", - "serde_yaml", - "sp1-derive", - "subtle", -] - [[package]] name = "subtle" version = "2.6.0" diff --git a/Cargo.toml b/Cargo.toml index cd32e19..97b2288 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "sp1-kzg" +name = "kzg-rs" version = "0.1.0" edition = "2021" diff --git a/README.md b/README.md index 35c651a..46f9569 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# sp1-kzg [![Rust](https://github.com/0xWOLAND/sp1-kzg/actions/workflows/rust.yml/badge.svg?branch=master)](https://github.com/0xWOLAND/sp1-kzg/actions/workflows/rust.yml) +# kzg-rs [![Rust](https://github.com/0xWOLAND/sp1-kzg/actions/workflows/rust.yml/badge.svg?branch=master)](https://github.com/0xWOLAND/sp1-kzg/actions/workflows/rust.yml) An endpoint for `verify_kzg_proof` in [c-kzg-4844](https://github.com/ethereum/c-kzg-4844) using [bls12_381](https://github.com/zkcrypto/bls12_381/). Passes all of the `verify_kzg_proof` tests in [c-kzg-4844/verify_kzg_proof](https://github.com/ethereum/c-kzg-4844/tree/main/tests/verify_kzg_proof/kzg-mainnet).