fix(ecstore): add fallible erasure construction

This commit is contained in:
cxymds
2026-07-17 15:00:09 +08:00
parent f6b8060469
commit bd148b20f7
12 changed files with 501 additions and 63 deletions
+2 -2
View File
@@ -308,8 +308,8 @@ pub mod error {
pub mod erasure {
pub use crate::erasure::coding::{
BitrotReader, BitrotWriter, BitrotWriterWrapper, CustomWriter, Erasure, ReedSolomonEncoder, calc_shard_size,
calc_shard_size_legacy,
BitrotReader, BitrotWriter, BitrotWriterWrapper, CustomWriter, Erasure, ErasureConstructionError, ReedSolomonEncoder,
calc_shard_size, calc_shard_size_legacy,
};
}