Skip to content

Commit

Permalink
fix commit for verkle trie library(#141)
Browse files Browse the repository at this point in the history
This fixes the commit for verkle-trie, since pointing to master can make compiles non-deterministic.

This will change soon to using ffi_interface, though while that PR is not merged this is a fix.

Signed-off-by: Kevaundray Wedderburn <kevtheappdev@gmail.com>
  • Loading branch information
kevaundray authored Jan 25, 2024
1 parent 2402ecb commit a0f6464
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions ipa-multipoint/ipa_multipoint_jni/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,22 @@ repository = "https://github.com/hyperledger/besu-native"
edition = "2018"

[dependencies]
verkle-spec = { git = "https://github.com/crate-crypto/rust-verkle", branch = "master" }
verkle-trie = { git = "https://github.com/crate-crypto/rust-verkle", branch = "master" }
verkle-spec = { git = "https://github.com/crate-crypto/rust-verkle", rev = "67d47d9e78f873da7c9e72687158468041059b5d" }
verkle-trie = { git = "https://github.com/crate-crypto/rust-verkle", rev = "67d47d9e78f873da7c9e72687158468041059b5d" }
ipa-multipoint = { git = "https://github.com/crate-crypto/ipa_multipoint", branch = "banderwagon_migration" }
banderwagon = { git = "https://github.com/crate-crypto/banderwagon" }
bandersnatch = "0.1.1"
ark-ff = { version = "^0.3.0", default-features = false }
ark-ec = { version = "^0.3.0", default-features = false }
ark-serialize = { version = "^0.3.0", default-features = false }
ark-std = { version = "^0.3.0", default-features = false }
jni = { version = "0.19.0", features = ["invocation"] } # We use invocation in tests.
jni = { version = "0.19.0", features = [
"invocation",
] } # We use invocation in tests.
hex = "0.4.3"
num-bigint = "0.4.4"


[lib]
name = "ipa_multipoint_jni"
crate-type = ["cdylib"]
crate-type = ["cdylib"]

0 comments on commit a0f6464

Please sign in to comment.