Skip to content

Commit

Permalink
feat: add hyperkzg commitment scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
JayWhite2357 committed Jan 10, 2025
1 parent 8baa9df commit d1812bf
Show file tree
Hide file tree
Showing 5 changed files with 402 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ license-file = "LICENSE"
ahash = { version = "0.8.11", default-features = false }
alloy-sol-types = { version = "0.8.5" }
ark-bls12-381 = { version = "0.5.0" }
ark-bn254 = { version = "0.5.0" }
ark-curve25519 = { version = "0.5.0" }
ark-ec = { version = "0.5.0" }
ark-ff = { version = "0.5.0" }
Expand All @@ -35,13 +36,15 @@ chrono = { version = "0.4.38", default-features = false }
curve25519-dalek = { version = "4", features = ["rand_core"] }
derive_more = { version = "0.99" }
enum_dispatch = { version = "0.3.13" }
ff = { version = "0.13.0"}
flexbuffers = { version = "2.0.0" }
indexmap = { version = "2.1", default-features = false }
indicatif = "0.17.8"
itertools = { version = "0.13.0", default-features = false, features = ["use_alloc"] }
lalrpop = { version = "0.22.0" }
lalrpop-util = { version = "0.22.0", default-features = false }
merlin = { version = "2" }
nova-snark = { version = "0.39.0" }
num-traits = { version = "0.2", default-features = false }
num-bigint = { version = "0.4.4", default-features = false }
opentelemetry = { version = "0.23.0" }
Expand Down
3 changes: 3 additions & 0 deletions crates/proof-of-sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ test = true
[dependencies]
ahash = { workspace = true }
ark-bls12-381 = { workspace = true }
ark-bn254 = { workspace = true }
ark-curve25519 = { workspace = true }
ark-ec = { workspace = true }
ark-ff = { workspace = true }
Expand All @@ -35,10 +36,12 @@ curve25519-dalek = { workspace = true, features = ["serde"] }
chrono = { workspace = true, features = ["serde"] }
derive_more = { workspace = true }
enum_dispatch = { workspace = true }
ff = { workspace = true }
indexmap = { workspace = true, features = ["serde"] }
indicatif = { workspace = true }
itertools = { workspace = true }
merlin = { workspace = true, optional = true }
nova-snark = { workspace = true }
num-traits = { workspace = true }
num-bigint = { workspace = true, default-features = false }
postcard = { workspace = true, features = ["alloc"] }
Expand Down
Loading

0 comments on commit d1812bf

Please sign in to comment.