gitextract_1164yhgf/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── benches/ │ ├── merk.rs │ └── ops.rs ├── docs/ │ └── algorithms.md ├── rustfmt.toml ├── scripts/ │ └── pgo.sh └── src/ ├── error.rs ├── lib.rs ├── merk/ │ ├── chunks.rs │ ├── mod.rs │ ├── restore.rs │ └── snapshot.rs ├── owner.rs ├── proofs/ │ ├── chunk.rs │ ├── encoding.rs │ ├── mod.rs │ ├── query/ │ │ ├── map.rs │ │ └── mod.rs │ └── tree.rs ├── test_utils/ │ ├── crash_merk.rs │ ├── mod.rs │ └── temp_merk.rs └── tree/ ├── commit.rs ├── debug.rs ├── encoding.rs ├── fuzz_tests.rs ├── hash.rs ├── iter.rs ├── kv.rs ├── link.rs ├── mod.rs ├── ops.rs └── walk/ ├── fetch.rs ├── mod.rs └── ref_walker.rs