Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
5daebf9
Simplify exports for poseidon package
richardpringle Jan 15, 2026
6ab2c8d
Use modern module layout in mina-tree
richardpringle Jan 21, 2026
8f1fced
WIP
richardpringle Jan 28, 2026
6f3c24a
more WIP
richardpringle Jan 30, 2026
b48cb7d
Format
richardpringle Feb 2, 2026
1c9d489
did it do it
richardpringle Feb 3, 2026
9b09755
Formatting
richardpringle Feb 3, 2026
84b6817
Update plan
richardpringle Feb 3, 2026
66d0efc
Another update
richardpringle Feb 4, 2026
7f0db75
Start PR review
richardpringle Feb 5, 2026
73bcb0e
Update review file
richardpringle Feb 6, 2026
d845db8
Remove unnecessary `pub`
richardpringle Feb 6, 2026
804fb7f
More progress
richardpringle Feb 6, 2026
0a4e278
Another round
richardpringle Feb 10, 2026
7b66eb0
Update
richardpringle Feb 10, 2026
1a29216
Remove unnecessary clone
richardpringle Feb 10, 2026
fe9e214
Remove the migration plan file
richardpringle Feb 10, 2026
09a294b
Replace unwraps with expects
richardpringle Feb 10, 2026
5513501
Remove duplicate code
richardpringle Feb 10, 2026
79f3b03
Add TODO to unify code in here and `proof-systems`
richardpringle Feb 10, 2026
5caa020
Address a bunch more comments
richardpringle Feb 10, 2026
80bb4b4
Small fixes
richardpringle Feb 10, 2026
6b81cda
Add todo for unwrap
richardpringle Feb 10, 2026
da14b62
Going to ignore this one for now
richardpringle Feb 10, 2026
3327b06
Add permalinks
richardpringle Feb 10, 2026
2f14a05
Another one ignored
richardpringle Feb 10, 2026
774fc6f
Massive removal of Infallible TryFrom implementations
richardpringle Feb 11, 2026
61940e7
Restore tests that were deleted
richardpringle Feb 11, 2026
cb746c2
Address remainder of comments
richardpringle Feb 11, 2026
c3a77d1
Describe TEST_FAILURES
richardpringle Feb 11, 2026
dd3a14d
Fix empty hash domain strings
richardpringle Feb 11, 2026
04f72e9
Ignore the failing test for now.
richardpringle Feb 11, 2026
09fcd5d
Fix formatting
richardpringle Feb 11, 2026
f8df3dc
Don't copy poseidon directory
richardpringle Feb 11, 2026
6856d01
Update tools/fuzzing
richardpringle Feb 12, 2026
bf65139
Ignore tests with wrong hashes
richardpringle Feb 12, 2026
b13b71a
Sneak in PaddedSeq improvements
richardpringle Feb 13, 2026
5e865ce
fixup! Sneak in PaddedSeq improvements
richardpringle Feb 13, 2026
421da86
Remove unnecessary attribute
richardpringle Feb 13, 2026
5c1c6ab
Put back the empty domain strings
richardpringle Feb 17, 2026
24aad1b
Change expected database-hash values
richardpringle Feb 17, 2026
2dd358c
Change expected hashes for mina-tree
richardpringle Feb 17, 2026
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
28 changes: 8 additions & 20 deletions Cargo.lock

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

5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ members = [
"crates/p2p-messages",
"crates/snark",
"crates/vrf",
# Crates to be removed (kept at root for now)
# poseidon: https://github.com/o1-labs/mina-rust/issues/1215
"poseidon",
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to remove the two comment lines above this as well

# Tools
"tools/archive-breadcrumb-compare",
"tools/bootstrap-sandbox",
Expand Down Expand Up @@ -79,6 +76,7 @@ bitvec = "1.0.1"
blake2 = "0.10"
bs58 = "0.4.0"
btreemultimap = "0.1.1"
bytemuck = "1.15.0"
bytes = "1.4.0"
cbc = { version = "0.1", features = ["block-padding", "alloc"] }
cfg-if = "1.0.4"
Expand Down Expand Up @@ -189,7 +187,6 @@ pcap = "2.4"
percent-encoding = "2.3"
pin-project-lite = "0.2.10"
poly-commitment = { git = "https://github.com/o1-labs/proof-systems", tag = "0.3.0" }
poseidon = { path = "poseidon" }
postcard = { version = "1.0.9", features = ["use-std"] }
proc-macro2 = "1.0.103"
prost = "0.12.4"
Expand Down
Loading
Loading