Added new kzgrs core module
This commit is contained in:
parent
c06962b944
commit
687baeb9a1
|
@ -11,8 +11,6 @@ members = [
|
||||||
"nomos-services/metrics",
|
"nomos-services/metrics",
|
||||||
"nomos-services/data-availability",
|
"nomos-services/data-availability",
|
||||||
"nomos-services/system-sig",
|
"nomos-services/system-sig",
|
||||||
"nomos-da/reed-solomon",
|
|
||||||
"nomos-da/kzg",
|
|
||||||
"nomos-da/full-replication",
|
"nomos-da/full-replication",
|
||||||
# TODO: add it again and reimplement full replication
|
# TODO: add it again and reimplement full replication
|
||||||
# "nomos-cli",
|
# "nomos-cli",
|
||||||
|
@ -22,6 +20,6 @@ members = [
|
||||||
"consensus/carnot-engine",
|
"consensus/carnot-engine",
|
||||||
"consensus/cryptarchia-engine",
|
"consensus/cryptarchia-engine",
|
||||||
"ledger/cryptarchia-ledger",
|
"ledger/cryptarchia-ledger",
|
||||||
"tests",
|
"tests", "nomos-da/kzgrs",
|
||||||
]
|
]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
[package]
|
||||||
|
name = "kzgrs"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
ark-bls12-381 = { version = "0.4.0" }
|
||||||
|
ark-bls12-381-ext = "0.4.1"
|
||||||
|
ark-ff = { version = "0.4.2" }
|
||||||
|
ark-poly = "0.4.2"
|
||||||
|
ark-poly-commit = "0.4.0"
|
||||||
|
ark-serialize = { version = "0.4" }
|
||||||
|
thiserror = "1.0.58"
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
rand = "0.8.5"
|
|
@ -0,0 +1,3 @@
|
||||||
|
pub mod common;
|
||||||
|
pub mod kzg;
|
||||||
|
pub mod rs;
|
Loading…
Reference in New Issue