rustic_core
rustic_core copied to clipboard
rustic_core - library for fast, encrypted, deduplicated backups that powers rustic-rs
needed to implement a `mount` command TODO: - [ ] decide platforms to support - [ ] Think about how to setup the `fuse` feature (unfortunately, there are no target-specific...
If we encounter an error, we should return an error and let the caller handle it. In the following code example, we encounter errors, but instead of returning them as...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [taiki-e/install-action](https://togithub.com/taiki-e/install-action) | action | digest | `d5ead4f` -> `d9dbaa3` | ---...
## Target group ### Persona 11: **Aisha - The Integrative Developer** - **Age**: 28 - **Background**: Software Developer at a mid-sized tech company - **Tech-savviness**: Advanced - **Needs**: Robust and...
There are still a lot of instances of `unwrap`/`expect` within the code base of rustic_core. We should activate the clippy lints: `#![deny(clippy::expect_used)]` and `#![deny(clippy::unwrap_used)]` and tackle this issue. If we...
Culprit, most likely in this test and surroundings, probably something with the runner and being limited in usage of RAM or so, most likely false positive. ```rust #[test] fn chunk_zeros()...
Hello :wave: `rustic_core 0.2.0` I'm noticing a (perhaps) unusual behaviour when taking a snapshot and pushing it over `opendal:s3`. The backup progressbar seems to increment, then pause, then increment ......
Example using rustic: ```rustic backup src1/ src2/ --as-path /path1/ --as-path /path2/``` would backup `src1/` as `/path1` and `src2/` as `/path2/`.
Adds `Repository::lock_repo` which locks all repository files. Also the backend trait is extended to support locking and a `lock_command` has been added to `RepositoryOptions` which turns any backend into a...