Skip to content
Draft
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
306ba2d
feat: first try, make jolt compatible
sebasti810 May 1, 2024
7a3a4e2
fix: make sha public
sebasti810 May 1, 2024
58fa1e8
fix: implement concat_slices for Vec<u8> hashing
sebasti810 May 2, 2024
8e419c3
fix: sha function accept same input as hasher
sebasti810 May 2, 2024
fd1e6bf
fix: remove std
sebasti810 May 8, 2024
a30e6f8
fix: remove std
sebasti810 May 8, 2024
bb7cb30
fix: first test with std-feature
sebasti810 May 8, 2024
905ec8c
fix: errors in error
sebasti810 May 8, 2024
172ba79
one step towards std feature
distractedm1nd May 8, 2024
f1c5b8d
fix: remove vec makro
sebasti810 May 9, 2024
fac6b86
fix: remove standard feature
sebasti810 May 9, 2024
29105af
fix: concat slices function
sebasti810 May 9, 2024
445cae4
fix: remove concat function
sebasti810 May 9, 2024
15aa025
fix: add concat function
sebasti810 May 9, 2024
ad55494
fix: test with std default
sebasti810 May 9, 2024
c5edc9c
fix: remove optional for serde and fix nightly errors
sebasti810 May 10, 2024
2f0b9c7
feat: test prepare for snark
sebasti810 May 12, 2024
02454d4
fix: make zk structs serializable
sebasti810 May 12, 2024
fda3312
fix: add node to prove
sebasti810 May 12, 2024
efabf19
fix: add clone
sebasti810 May 12, 2024
24277d5
fix: remove vec! from no_std
sebasti810 May 13, 2024
893d547
feat: test node vec
sebasti810 May 13, 2024
f3732a0
fix: remove Sha256 struct for now
sebasti810 May 13, 2024
66e1f31
fix: missing import
sebasti810 May 13, 2024
742e321
fix: remove default feature std
sebasti810 May 13, 2024
4943e32
fix: add no std innernode
sebasti810 May 13, 2024
f2423c4
feat: try converting to zk inner node
sebasti810 May 13, 2024
990d816
feat: add prepare for snark
sebasti810 May 13, 2024
03c1eeb
feat: add zknode impl
sebasti810 May 13, 2024
0b0e723
fix: no std create zk node function
sebasti810 May 13, 2024
1224541
fix: move create zk node to std
sebasti810 May 13, 2024
ef3c801
fix: try to remove left and right
sebasti810 May 13, 2024
35c2ea3
fix: remove left and right in the create function
sebasti810 May 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
240 changes: 85 additions & 155 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ keywords = ["crypto", "merkle-tree", "membership", "non-membership"]
readme = "README.md"

[dependencies]
crypto-hash = "0.3.4"
num = "0.4.0"
serde = { version = "1.0.151", features = ["derive", "rc"] }
thiserror = "1.0.50"
serde_json = "1.0.79"
no-std-thiserror = "0.1.0"
serde_json = { version = "1.0.117", default-features = false, features = ["alloc"] }
cargo-audit = "0.20.0"
sha2 = "0.10.8"
hex = {version = "0.4.3", default-features = false }
Loading