Releases: filecoin-project/rust-fil-proofs
Releases · filecoin-project/rust-fil-proofs
4a2f529223244783
refactor: make base and expansion degrees constant The feature `storage-proofs/unchecked-degrees` allows for an escape hatch.
262316f4df66a503
feat(storage-proofs): store MTs on disk by default (#836) BREAKING CHANGE: We now store MTs on disk by default, this shouldn't have an impact on replication time but will increase disk usage considerably (roughly 20x the sector size). To store them on memory instead use the (new) `mem-trees` feature (that replaces the old, now removed, `disk-trees`).
17f95d6f2e6bf039
fix(storage-proofs): ensure direct parent is first parent input to KD…
d07e03a4c0ca317d
Remove extra `data` allocation used for MT generation (#837) Make (a small) part of the replication the replication process sequential to avoid creating an extra `mmap` the size of a sector size. Decrease memory usage by 1x. Increase replication time (for parallel setups which will waste part of that parallelism) by a small fraction (encoding time still dominates).
cb54e8c4d682cffd
fix(filecoin-proofs): properly retrieve commitments in verify_post
b1ba28e9421f63e0
bug(classic misdirection) (#852)
5ca1740929482a9a
fix(filecoin-proofs): use SectorId get_unsealed_range
037d5fb8f2fad474
feat(filecoin-proofs): paramfetch: update default ipget to 0.4.0 (#851)
db7c60293cdc8833
feat(fil-proofs-tooling): add logging to the benchy command
d2b39cc496403705
feat: implement and switch to Rational PoSt BREAKING API CHANGES: - filecoin-proofs: generate_post - filecoin-proofs: verify_post Closes #497