rustic_core
                                
                                 rustic_core copied to clipboard
                                
                                    rustic_core copied to clipboard
                            
                            
                            
                        rustic_core - library for fast, encrypted, deduplicated backups that powers rustic-rs
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/rustic-rs/rustic_core). ## Rate-Limited These updates are currently rate-limited....
## 🤖 New release * `rustic_backend`: 0.1.1 -> 0.2.0 (✓ API compatible changes) * `rustic_core`: 0.2.0 -> 0.3.0 (✓ API compatible changes) * `rustic_config`: 0.1.0 -> 0.2.0 (✓ API compatible...
Adds the methods `drop_index` and `drop_data_from_index` to `Repository`. This can be handy to save memory if the index is no longer needed.
Till now, rustic_core had a lot of unwraps and expects sprinkled over the code base. This made rustic_core and dependents panic in case of errors. This is unacceptable for a...
[...] I realized that no data structure does `impl Serialize` - so this has to wait until JSON support for the prune statistics has been added. _Originally posted by @aawsome...
First, the most important thing is that `prune` (being the only command which removes pack or index files) doesn't leave the repository in an unsane condition. This is why `check`...
- remove additional packfiles - re-read explicitely given packfiles and compute bit/byte-changes for fitting SHA256 (i.e. repair single or few bit-rots) - maybe possibilty to use hot or cold part...
Tried the copy operation again this time without "-- init" `rustic copy 4246b963` ```console [00:47:12] copying blobs... ████████████████████████████████████████ 215.87 GiB 78.29 MiB/s [ERROR] service=s3 operation=Reader::read path=data/81/815238a856c9dc4f25a08179f4bc7092b99a6f6f5696d31c841ad5fa8c1ae2c6 read=0 -> read failed:...
[As discussed on Discord](https://discord.com/channels/1101748142694748181/1101748180007264276/1214949143101833237), it would be nice to be able to read files from a custom ReadSource. This allows us to implement any source to make backups from. `Archiver::archive()`...